Class SocialAuthenticationException

The SocialAuthenticationException class represents an error occurring when a one of the social clients encounters an authentication problem while communicating with the Episerver Social Cloud service.

Inheritance
System.Object
System.Exception
SocialAuthenticationException
Implements
System.Runtime.Serialization.ISerializable
System.Runtime.InteropServices._Exception
Inherited Members
System.Exception.GetBaseException()
System.Exception.ToString()
System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)
System.Exception.GetType()
System.Exception.Message
System.Exception.Data
System.Exception.InnerException
System.Exception.TargetSite
System.Exception.StackTrace
System.Exception.HelpLink
System.Exception.Source
System.Exception.HResult
System.Exception.SerializeObjectState
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.MemberwiseClone()
Namespace: EPiServer.Social.Common
Assembly: EPiServer.Social.Common.dll
Version: 1.5.4
Syntax
public class SocialAuthenticationException : SocialException, ISerializable, _Exception

Constructors

SocialAuthenticationException(String)

Constructor

Declaration
public SocialAuthenticationException(string message = "An authentication error occurred while processing the request")
Parameters
Type Name Description
System.String message

Exception message

Properties

AuthorizationHeader

Gets or sets the authorization header attached to the request issued to the Episerver Social Cloud service which resulted in an authentication exception.

Declaration
public string AuthorizationHeader { get; set; }
Property Value
Type Description
System.String

NormalizedRequestUri

Gets or sets the absolute uri of the request issued to the Episerver Social Cloud service that resulted in an authentication exception.

Declaration
public string NormalizedRequestUri { get; set; }
Property Value
Type Description
System.String
Remarks

Note that this is a normalized version of the absolute Uri of the request. The client-side Episerver Social authentication process normalizes the request Uri to a format suitable for communicating with the Episerver Social Cloud service.

RequestMethod

Gets or sets the type of http request issued to the Episerver Social Cloud service that resulted in an authentication exception.

Declaration
public string RequestMethod { get; set; }
Property Value
Type Description
System.String

Implements

System.Runtime.Serialization.ISerializable
System.Runtime.InteropServices._Exception
arrow_upward