SamlSecurityTokenHandler.CreateXmlStringFromAttributes 方法

定义

从表示参与者的 SAML 1.1 特性的集合中生成一个 XML 格式的字符串。

protected:
 virtual System::String ^ CreateXmlStringFromAttributes(System::Collections::Generic::IEnumerable<System::IdentityModel::Tokens::SamlAttribute ^> ^ attributes);
protected virtual string CreateXmlStringFromAttributes (System.Collections.Generic.IEnumerable<System.IdentityModel.Tokens.SamlAttribute> attributes);
abstract member CreateXmlStringFromAttributes : seq<System.IdentityModel.Tokens.SamlAttribute> -> string
override this.CreateXmlStringFromAttributes : seq<System.IdentityModel.Tokens.SamlAttribute> -> string
Protected Overridable Function CreateXmlStringFromAttributes (attributes As IEnumerable(Of SamlAttribute)) As String

参数

attributes
IEnumerable<SamlAttribute>

包含该特性的 SamlAttribute 类型的枚举。

返回

使用特性构造的格式良好的 XML 字符串。

注解

字符串的形式为“<Actor Attribute name, ns><AttributeValue>...<></AttributeValue>, ...</Attribute>...</Actor>”

适用于