SecurityContextKeyIdentifierClause Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the SecurityContextKeyIdentifierClause class.
Overloads
SecurityContextKeyIdentifierClause(UniqueId) |
Initializes a new instance of the SecurityContextKeyIdentifierClause class using the specified context identifier. |
SecurityContextKeyIdentifierClause(UniqueId, UniqueId) |
Initializes a new instance of the SecurityContextKeyIdentifierClause class using the specified context identifier and generation. |
SecurityContextKeyIdentifierClause(UniqueId, UniqueId, Byte[], Int32) |
Initializes a new instance of the SecurityContextKeyIdentifierClause class with the specified values. |
SecurityContextKeyIdentifierClause(UniqueId)
Initializes a new instance of the SecurityContextKeyIdentifierClause class using the specified context identifier.
public:
SecurityContextKeyIdentifierClause(System::Xml::UniqueId ^ contextId);
public SecurityContextKeyIdentifierClause (System.Xml.UniqueId contextId);
new System.ServiceModel.Security.SecurityContextKeyIdentifierClause : System.Xml.UniqueId -> System.ServiceModel.Security.SecurityContextKeyIdentifierClause
Public Sub New (contextId As UniqueId)
Parameters
- contextId
- UniqueId
The unique ID of the security context.
Remarks
For more about the contextId
parameter, see ContextId.
Applies to
SecurityContextKeyIdentifierClause(UniqueId, UniqueId)
Initializes a new instance of the SecurityContextKeyIdentifierClause class using the specified context identifier and generation.
public:
SecurityContextKeyIdentifierClause(System::Xml::UniqueId ^ contextId, System::Xml::UniqueId ^ generation);
public SecurityContextKeyIdentifierClause (System.Xml.UniqueId contextId, System.Xml.UniqueId generation);
new System.ServiceModel.Security.SecurityContextKeyIdentifierClause : System.Xml.UniqueId * System.Xml.UniqueId -> System.ServiceModel.Security.SecurityContextKeyIdentifierClause
Public Sub New (contextId As UniqueId, generation As UniqueId)
Parameters
Remarks
For more about the contextId
parameter, see ContextId.
For more about the generation
parameter, see KeyGeneration.
Applies to
SecurityContextKeyIdentifierClause(UniqueId, UniqueId, Byte[], Int32)
Initializes a new instance of the SecurityContextKeyIdentifierClause class with the specified values.
public:
SecurityContextKeyIdentifierClause(System::Xml::UniqueId ^ contextId, System::Xml::UniqueId ^ generation, cli::array <System::Byte> ^ derivationNonce, int derivationLength);
public SecurityContextKeyIdentifierClause (System.Xml.UniqueId contextId, System.Xml.UniqueId generation, byte[] derivationNonce, int derivationLength);
new System.ServiceModel.Security.SecurityContextKeyIdentifierClause : System.Xml.UniqueId * System.Xml.UniqueId * byte[] * int -> System.ServiceModel.Security.SecurityContextKeyIdentifierClause
Public Sub New (contextId As UniqueId, generation As UniqueId, derivationNonce As Byte(), derivationLength As Integer)
Parameters
- contextId
- UniqueId
The context ID part of the identifier clause.
- generation
- UniqueId
The generation part of the identifier clause.
- derivationNonce
- Byte[]
The nonce ("number used once") used to derive the token.
- derivationLength
- Int32
The length of the key being derived.
Remarks
derivationNonce
and derivationLength
are used for implied derived keys. This is supported only on the sending side.
Applies to
.NET