SamlSerializer.PopulateDictionary(IXmlDictionary) Método
Definição
Substitui o conjunto padrão de elementos e atributos XML que são reconhecidos por este serializador com o dicionário especificado de elementos e atributos.Replaces the default set of XML elements and attributes that are recognized by this serializer with the specified dictionary of elements and attributes.
public:
void PopulateDictionary(System::Xml::IXmlDictionary ^ dictionary);
public void PopulateDictionary (System.Xml.IXmlDictionary dictionary);
member this.PopulateDictionary : System.Xml.IXmlDictionary -> unit
Public Sub PopulateDictionary (dictionary As IXmlDictionary)
Parâmetros
- dictionary
- IXmlDictionary
Um IXmlDictionary que contém o conjunto de elementos e atributos XML.An IXmlDictionary that contains the set of XML elements and attributes.
Comentários
Use o PopulateDictionary método quando um conjunto personalizado de elementos XML for definido para um dos pontos de extensibilidade de uma ASSERÇÃO SAML.Use the PopulateDictionary method when a custom set of XML elements is defined for one of the extensibility points of a SAML assertion. Os pontos de extensibilidade para uma declaração SAML incluem os <saml:Advice> <saml:Condition> elementos, e <saml:Statement> .Extensibility points for a SAML assertion include the <saml:Advice>, <saml:Condition>, and <saml:Statement> elements. Para obter mais detalhes sobre como substituir como cada um desses elementos é lido, consulte os LoadAdvice(XmlDictionaryReader, SecurityTokenSerializer, SecurityTokenResolver) LoadCondition(XmlDictionaryReader, SecurityTokenSerializer, SecurityTokenResolver) métodos, e LoadStatement(XmlDictionaryReader, SecurityTokenSerializer, SecurityTokenResolver) .For more details about overriding how each of these elements are read, see the LoadAdvice(XmlDictionaryReader, SecurityTokenSerializer, SecurityTokenResolver), LoadCondition(XmlDictionaryReader, SecurityTokenSerializer, SecurityTokenResolver), and LoadStatement(XmlDictionaryReader, SecurityTokenSerializer, SecurityTokenResolver) methods.