C# 클래스 DotNetOpenAuth.OpenId.Identifier

파일 보기 프로젝트 열기: OneCare/dotnetopenid 1 사용 예제들

Private Properties

프로퍼티 타입 설명
Identifier System
Identifier System
IsValid bool
Parse Identifier
Parse Identifier
Reparse Identifier
TrimFragment Identifier
TryRequireSsl bool

공개 메소드들

메소드 설명
Equals ( object obj ) : bool

Tests equality between two Identifiers.

GetHashCode ( ) : int

Gets the hash code for an Identifier for storage in a hashtable.

TryParse ( string value, Identifier &result ) : bool

Attempts to parse a string for an OpenId Identifier.

operator ( ) : bool

Tests equality between two Identifiers.

비공개 메소드들

메소드 설명
Identifier ( ) : System

Initializes static members of the Identifier class.

Identifier ( string originalString, bool isDiscoverySecureEndToEnd ) : System
IsValid ( string identifier ) : bool
Parse ( string identifier ) : Identifier
Parse ( string identifier, bool serializeExactValue ) : Identifier
Reparse ( Identifier identifier ) : Identifier

Reparses the specified identifier in order to be assured that the concrete type that implements the identifier is one of the well-known ones.

TrimFragment ( ) : Identifier
TryRequireSsl ( Identifier &secureIdentifier ) : bool

Converts a given identifier to its secure equivalent. UriIdentifiers originally created with an implied HTTP scheme change to HTTPS. Discovery is made to require SSL for the entire resolution process.

메소드 상세

Equals() 공개 메소드

Tests equality between two Identifiers.
/// The parameter is null. ///
public Equals ( object obj ) : bool
obj object The to compare with the current .
리턴 bool

GetHashCode() 공개 메소드

Gets the hash code for an Identifier for storage in a hashtable.
public GetHashCode ( ) : int
리턴 int

TryParse() 공개 정적인 메소드

Attempts to parse a string for an OpenId Identifier.
public static TryParse ( string value, Identifier &result ) : bool
value string The string to be parsed.
result Identifier The parsed Identifier form.
리턴 bool

operator() 공개 정적인 메소드

Tests equality between two Identifiers.
public static operator ( ) : bool
리턴 bool