C# 클래스 AspNet.Security.OpenId.OpenIdAuthenticationMessage

Represents an OpenID message.
파일 보기 프로젝트 열기: aspnet-contrib/AspNet.Security.OpenId.Providers 1 사용 예제들

공개 메소드들

메소드 설명
GetAttributes ( ) : string>.IDictionary

Gets the attributes returned by the identity provider, or an empty dictionary if the message doesn't expose an attribute exchange alias.

GetExtensions ( ) : string>.IDictionary

Gets the extensions and their corresponding alias.

GetParameter ( [ name ) : string

Gets the parameter corresponding to the requested name and the default prefix or null if no appropriate parameter can be found.

GetParameter ( [ prefix, [ name ) : string

Gets the parameter corresponding to the requested name and the given prefix or null if no appropriate parameter can be found.

OpenIdAuthenticationMessage ( ) : System

Initializes a new OpenID message.

OpenIdAuthenticationMessage ( StringValues>.[ parameters ) : System

Initializes a new OpenID message.

OpenIdAuthenticationMessage ( string>.[ parameters ) : System

Initializes a new OpenID message.

SetParameter ( [ name, [ value ) : void

Adds, replaces or removes the parameter corresponding to the requested name and the default prefix.

SetParameter ( [ prefix, [ name, [ value ) : void

Adds, replaces or removes the parameter corresponding to the requested name and the given prefix.

메소드 상세

GetAttributes() 공개 메소드

Gets the attributes returned by the identity provider, or an empty dictionary if the message doesn't expose an attribute exchange alias.
public GetAttributes ( ) : string>.IDictionary
리턴 string>.IDictionary

GetExtensions() 공개 메소드

Gets the extensions and their corresponding alias.
public GetExtensions ( ) : string>.IDictionary
리턴 string>.IDictionary

GetParameter() 공개 메소드

Gets the parameter corresponding to the requested name and the default prefix or null if no appropriate parameter can be found.
public GetParameter ( [ name ) : string
name [ The parameter to retrieve.
리턴 string

GetParameter() 공개 메소드

Gets the parameter corresponding to the requested name and the given prefix or null if no appropriate parameter can be found.
public GetParameter ( [ prefix, [ name ) : string
prefix [ The prefix used to discriminate the parameter.
name [ The parameter to retrieve.
리턴 string

OpenIdAuthenticationMessage() 공개 메소드

Initializes a new OpenID message.
public OpenIdAuthenticationMessage ( ) : System
리턴 System

OpenIdAuthenticationMessage() 공개 메소드

Initializes a new OpenID message.
public OpenIdAuthenticationMessage ( StringValues>.[ parameters ) : System
parameters StringValues>.[ The parameters associated with the message.
리턴 System

OpenIdAuthenticationMessage() 공개 메소드

Initializes a new OpenID message.
public OpenIdAuthenticationMessage ( string>.[ parameters ) : System
parameters string>.[ The parameters associated with the message.
리턴 System

SetParameter() 공개 메소드

Adds, replaces or removes the parameter corresponding to the requested name and the default prefix.
public SetParameter ( [ name, [ value ) : void
name [ The parameter to store.
value [ The value associated with the parameter.
리턴 void

SetParameter() 공개 메소드

Adds, replaces or removes the parameter corresponding to the requested name and the given prefix.
public SetParameter ( [ prefix, [ name, [ value ) : void
prefix [ The prefix used to discriminate the parameter.
name [ The parameter to store.
value [ The value associated with the parameter.
리턴 void