SecurityBindingElement.CreateIssuedTokenOverTransportBindingElement Method
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.
Creates a security binding element configured to require SOAP security based client authentication using an issued token. This binding element requires the transport to provide server authentication and message protection (for example, HTTPS).
public:
static System::ServiceModel::Channels::TransportSecurityBindingElement ^ CreateIssuedTokenOverTransportBindingElement(System::ServiceModel::Security::Tokens::IssuedSecurityTokenParameters ^ issuedTokenParameters);
public static System.ServiceModel.Channels.TransportSecurityBindingElement CreateIssuedTokenOverTransportBindingElement (System.ServiceModel.Security.Tokens.IssuedSecurityTokenParameters issuedTokenParameters);
static member CreateIssuedTokenOverTransportBindingElement : System.ServiceModel.Security.Tokens.IssuedSecurityTokenParameters -> System.ServiceModel.Channels.TransportSecurityBindingElement
Public Shared Function CreateIssuedTokenOverTransportBindingElement (issuedTokenParameters As IssuedSecurityTokenParameters) As TransportSecurityBindingElement
Parameters
- issuedTokenParameters
- IssuedSecurityTokenParameters
Returns
A TransportSecurityBindingElement object.
Exceptions
issuedTokenParameters
is null
.
Remarks
The created binding has IncludeTimestamp set to true
.
The LocalClientSecuritySettings object returned from LocalClientSettings has its DetectReplays property set to false
.
The LocalServiceSecuritySettings object returned from LocalServiceSettings has its DetectReplays property set to false
.
Note
Once a SecurityBindingElement object is created by calling this method, the KeyType property should be treated as immutable. Inconsistent binding behavior may occur if this value is modified.