The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
KerberosSecurityTokenParameters Constructor ()
.NET Framework (current version)
Initializes a new instance of the KerberosSecurityTokenParameters class.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
The new instance property values are set to their defaults:
InclusionMode is set to Once.
ReferenceStyle is set to Internal.
RequireDerivedKeys is set to true.
The following code shows how to call this constructor.
// Create a SymmetricSecurityBindingElement. SymmetricSecurityBindingElement ssbe = new SymmetricSecurityBindingElement(); // Set the algorithm suite to one that uses 128-bit keys. ssbe.DefaultAlgorithmSuite = SecurityAlgorithmSuite.Basic128; // Set MessageProtectionOrder to SignBeforeEncrypt. ssbe.MessageProtectionOrder = MessageProtectionOrder.SignBeforeEncrypt; // Use a Kerberos token as the protection token. ssbe.ProtectionTokenParameters = new KerberosSecurityTokenParameters();
.NET Framework
Available since 3.0
Available since 3.0
Show: