|
Dieser Artikel wurde maschinell übersetzt. Bewegen Sie den Mauszeiger über die Sätze im Artikel, um den Originaltext anzuzeigen. Weitere Informationen
|
Übersetzung
Original
|
SecurityToken.SecurityKeys-Eigenschaft
Namespace: System.IdentityModel.Tokens
Assembly: System.IdentityModel (in System.IdentityModel.dll)
Eigenschaftswert
Typ: System.Collections.ObjectModel.ReadOnlyCollection<SecurityKey>/// <summary> /// Defines the set of constants for the Simple Web Token. /// </summary> public static class SimpleWebTokenConstants { public const string Audience = "Audience"; public const string ExpiresOn = "ExpiresOn"; public const string Id = "Id"; public const string Issuer = "Issuer"; public const string Signature = "HMACSHA256"; public const string ValidFrom = "ValidFrom"; public const string ValueTypeUri = "http://schemas.xmlsoap.org/ws/2009/11/swt-token-profile-1.0"; } ... public static DateTime SwtBaseTime = new DateTime( 1970, 1, 1, 0, 0, 0, 0 ); // per SWT psec NameValueCollection _properties; ... /// <summary> /// Gets the keys associated with this token. /// </summary> /// <value>The keys associated with this token.</value> public override ReadOnlyCollection<SecurityKey> SecurityKeys { get { return new ReadOnlyCollection<SecurityKey>( new List<SecurityKey>() ); } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core-Rolle wird nicht unterstützt), Windows Server 2008 R2 (Server Core-Rolle wird mit SP1 oder höher unterstützt; Itanium wird nicht unterstützt)
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.