SecurityTokenManager::CreateSecurityTokenSerializer Method (SecurityTokenVersion^)
Gets an XML serializer that can serialize security tokens in the specified version of the WS-* specifications.
Assembly: System.IdentityModel (in System.IdentityModel.dll)
public: virtual SecurityTokenSerializer^ CreateSecurityTokenSerializer( SecurityTokenVersion^ version ) abstract
Parameters
- version
-
Type:
System.IdentityModel.Selectors::SecurityTokenVersion^
A SecurityTokenVersion that specifies the WS-* specification versions that security tokens adhere to.
Return Value
Type: System.IdentityModel.Selectors::SecurityTokenSerializer^A SecurityTokenSerializer to serialize the security tokens.
To add serialization support for a custom token, derive a class from WSSecurityTokenSerializer and return an instance of that class for the CreateSecurityTokenSerializer(SecurityTokenVersion^) method. The WSSecurityTokenSerializer class, which derives from the SecurityTokenSerializer class, is capable of serializing and deserializing the security tokens that ship with WCF. Thus, to add support for a custom token to the serializer, override the virtual methods in the WSSecurityTokenSerializer class, add code that checks whether the desired security token is the custom token, and, if not, call the base class method.
Available since 3.0