1 write to _securityTokenHandlers
System.IdentityModel (1)
System\IdentityModel\Tokens\SecurityTokenSerializerAdapter.cs (1)
41_securityTokenHandlers = securityTokenHandlerCollection;
16 references to _securityTokenHandlers
System.IdentityModel (16)
System\IdentityModel\Tokens\SecurityTokenSerializerAdapter.cs (16)
57return _securityTokenHandlers; 70return _securityTokenHandlers.CanReadToken(reader); 81return _securityTokenHandlers.CanWriteToken(token); 92return _securityTokenHandlers.ReadToken(reader); 103_securityTokenHandlers.WriteToken(writer, token); 146return _securityTokenHandlers.KeyInfoSerializer == null ? false : _securityTokenHandlers.KeyInfoSerializer.CanWriteKeyIdentifier(keyIdentifier); 151_securityTokenHandlers.KeyInfoSerializer.WriteKeyIdentifier(writer, keyIdentifier); 163foreach (SecurityTokenHandler securityTokenHandler in _securityTokenHandlers) 171return (_securityTokenHandlers.KeyInfoSerializer == null) ? false : _securityTokenHandlers.KeyInfoSerializer.CanReadKeyIdentifierClause(reader); 183foreach (SecurityTokenHandler securityTokenHandler in _securityTokenHandlers) 191return (_securityTokenHandlers.KeyInfoSerializer == null) ? false : _securityTokenHandlers.KeyInfoSerializer.CanWriteKeyIdentifierClause(keyIdentifierClause); 201return _securityTokenHandlers.ReadKeyIdentifierClause(reader); 211_securityTokenHandlers.WriteKeyIdentifierClause(writer, keyIdentifierClause);