BinarySecretSecurityToken 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
BinarySecretSecurityToken 클래스의 새 인스턴스를 초기화합니다.
오버로드
BinarySecretSecurityToken(Byte[]) |
BinarySecretSecurityToken 클래스의 새 인스턴스를 초기화합니다. |
BinarySecretSecurityToken(Int32) |
BinarySecretSecurityToken 클래스의 새 인스턴스를 초기화합니다. |
BinarySecretSecurityToken(String, Byte[]) |
BinarySecretSecurityToken 클래스의 새 인스턴스를 초기화합니다. |
BinarySecretSecurityToken(String, Int32) |
BinarySecretSecurityToken 클래스의 새 인스턴스를 초기화합니다. |
BinarySecretSecurityToken(String, Byte[], Boolean) |
BinarySecretSecurityToken 클래스의 새 인스턴스를 초기화합니다. |
BinarySecretSecurityToken(String, Int32, Boolean) |
BinarySecretSecurityToken 클래스의 새 인스턴스를 초기화합니다. |
BinarySecretSecurityToken(Byte[])
BinarySecretSecurityToken 클래스의 새 인스턴스를 초기화합니다.
public:
BinarySecretSecurityToken(cli::array <System::Byte> ^ key);
public BinarySecretSecurityToken (byte[] key);
new System.ServiceModel.Security.Tokens.BinarySecretSecurityToken : byte[] -> System.ServiceModel.Security.Tokens.BinarySecretSecurityToken
Public Sub New (key As Byte())
매개 변수
- key
- Byte[]
키를 나타내는 바이트 배열입니다.
예제
다음 코드에서는 생성자를 호출하는 방법을 보여 줍니다.
BinarySecretSecurityToken CreateProofToken(byte[] proofKey)
{
return new BinarySecretSecurityToken(proofKey);
}
Function CreateProofToken(ByVal proofKey() As Byte) As BinarySecretSecurityToken
Return New BinarySecretSecurityToken(proofKey)
End Function
적용 대상
BinarySecretSecurityToken(Int32)
BinarySecretSecurityToken 클래스의 새 인스턴스를 초기화합니다.
public:
BinarySecretSecurityToken(int keySizeInBits);
public BinarySecretSecurityToken (int keySizeInBits);
new System.ServiceModel.Security.Tokens.BinarySecretSecurityToken : int -> System.ServiceModel.Security.Tokens.BinarySecretSecurityToken
Public Sub New (keySizeInBits As Integer)
매개 변수
- keySizeInBits
- Int32
키의 크기(비트)입니다.
적용 대상
BinarySecretSecurityToken(String, Byte[])
BinarySecretSecurityToken 클래스의 새 인스턴스를 초기화합니다.
public:
BinarySecretSecurityToken(System::String ^ id, cli::array <System::Byte> ^ key);
public BinarySecretSecurityToken (string id, byte[] key);
new System.ServiceModel.Security.Tokens.BinarySecretSecurityToken : string * byte[] -> System.ServiceModel.Security.Tokens.BinarySecretSecurityToken
Public Sub New (id As String, key As Byte())
매개 변수
- id
- String
토큰 ID입니다.
- key
- Byte[]
키를 나타내는 바이트 배열입니다.
적용 대상
BinarySecretSecurityToken(String, Int32)
BinarySecretSecurityToken 클래스의 새 인스턴스를 초기화합니다.
public:
BinarySecretSecurityToken(System::String ^ id, int keySizeInBits);
public BinarySecretSecurityToken (string id, int keySizeInBits);
new System.ServiceModel.Security.Tokens.BinarySecretSecurityToken : string * int -> System.ServiceModel.Security.Tokens.BinarySecretSecurityToken
Public Sub New (id As String, keySizeInBits As Integer)
매개 변수
- id
- String
토큰 ID입니다.
- keySizeInBits
- Int32
키의 크기(비트)입니다.
예외
keySizeInBits
가 0 이하이거나, 512 이상이거나, 8의 배수가 아닌 경우
적용 대상
BinarySecretSecurityToken(String, Byte[], Boolean)
BinarySecretSecurityToken 클래스의 새 인스턴스를 초기화합니다.
protected:
BinarySecretSecurityToken(System::String ^ id, cli::array <System::Byte> ^ key, bool allowCrypto);
protected BinarySecretSecurityToken (string id, byte[] key, bool allowCrypto);
new System.ServiceModel.Security.Tokens.BinarySecretSecurityToken : string * byte[] * bool -> System.ServiceModel.Security.Tokens.BinarySecretSecurityToken
Protected Sub New (id As String, key As Byte(), allowCrypto As Boolean)
매개 변수
- id
- String
토큰 ID입니다.
- key
- Byte[]
키를 나타내는 바이트 배열입니다.
예외
key
이(가) null
인 경우
적용 대상
BinarySecretSecurityToken(String, Int32, Boolean)
BinarySecretSecurityToken 클래스의 새 인스턴스를 초기화합니다.
protected:
BinarySecretSecurityToken(System::String ^ id, int keySizeInBits, bool allowCrypto);
protected BinarySecretSecurityToken (string id, int keySizeInBits, bool allowCrypto);
new System.ServiceModel.Security.Tokens.BinarySecretSecurityToken : string * int * bool -> System.ServiceModel.Security.Tokens.BinarySecretSecurityToken
Protected Sub New (id As String, keySizeInBits As Integer, allowCrypto As Boolean)
매개 변수
- id
- String
토큰 ID입니다.
- keySizeInBits
- Int32
키의 크기(비트)입니다.
예외
keySizeInBits
가 0 이하이거나, 512 이상이거나, 8의 배수가 아닌 경우