8 references to SecurityTokenHandlerCollectionManager
System.IdentityModel (8)
System\IdentityModel\Protocols\WSTrust\WSTrustSerializationContext.cs (2)
41
/// The <see cref="
SecurityTokenHandlerCollectionManager
" /> containing the set of <see cref="SecurityTokenHandler" />
95
/// Gets or sets the <see cref="
SecurityTokenHandlerCollectionManager
" /> containing the set of <see cref="SecurityTokenHandler" />
System\IdentityModel\Protocols\WSTrust\WSTrustSerializationHelper.cs (6)
296
if (context.
SecurityTokenHandlerCollectionManager
.ContainsKey(SecurityTokenHandlerCollectionManager.Usage.OnBehalfOf))
298
rst.OnBehalfOf = new SecurityTokenElement(WSTrustSerializationHelper.ReadInnerXml(reader), context.
SecurityTokenHandlerCollectionManager
[SecurityTokenHandlerCollectionManager.Usage.OnBehalfOf]);
319
if (context.
SecurityTokenHandlerCollectionManager
.ContainsKey(SecurityTokenHandlerCollectionManager.Usage.ActAs))
321
rst.ActAs = new SecurityTokenElement(WSTrustSerializationHelper.ReadInnerXml(reader), context.
SecurityTokenHandlerCollectionManager
[SecurityTokenHandlerCollectionManager.Usage.ActAs]);
2927
if (context.
SecurityTokenHandlerCollectionManager
.ContainsKey(usage))
2929
tokenHandlerCollection = context.
SecurityTokenHandlerCollectionManager
[usage];