Show / Hide Table of Contents

Class SAMLAttribute

Represents an attribute.

Inheritance
System.Object
AttributeType
SAMLAttribute
Inherited Members
AttributeType.RegisterAttributeValueSerializer(String, String, IAttributeValueSerializer)
AttributeType.DeregisterAttributeValueSerializer(String, String)
AttributeType.IsAttributeValueSerializerRegistered(String, String)
AttributeType.GetAttributeValueSerializer(String, String)
AttributeType.Name
AttributeType.NameFormat
AttributeType.FriendlyName
AttributeType.Values
AttributeType.ToXml(XmlElement)
AttributeType.ToString()
AttributeType.ToString(String)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: ComponentSpace.SAML2.Assertions
Assembly: ComponentSpace.Saml2.dll
Syntax
public class SAMLAttribute : AttributeType
Remarks

Refer to the Assertions and Protocol for the OASIS Security Assertion Markup Language (SAML) V2.0 specification for further details.

Constructors

SAMLAttribute()

Initializes a new instance of the SAMLAttribute class.

Declaration
public SAMLAttribute()

SAMLAttribute(String, String, String)

Initializes a new instance of the SAMLAttribute class.

Declaration
public SAMLAttribute(string name, string nameFormat, string friendlyName)
Parameters
Type Name Description
System.String name

The attribute name.

System.String nameFormat

The name format.

System.String friendlyName

The friendly name.

See Also
SAMLIdentifiers.AttributeNameFormats

SAMLAttribute(String, String, String, String)

Initializes a new instance of the SAMLAttribute class.

Declaration
public SAMLAttribute(string name, string nameFormat, string friendlyName, string attributeValue)
Parameters
Type Name Description
System.String name

The attribute name.

System.String nameFormat

The name format.

System.String friendlyName

The friendly name.

System.String attributeValue

The attribute value.

See Also
SAMLIdentifiers.AttributeNameFormats

SAMLAttribute(String, String, String, String, Object)

Initializes a new instance of the SAMLAttribute class.

Declaration
public SAMLAttribute(string name, string nameFormat, string friendlyName, string attributeType, object attributeValue)
Parameters
Type Name Description
System.String name

The attribute name.

System.String nameFormat

The name format.

System.String friendlyName

The friendly name.

System.String attributeType

The attribute type.

System.Object attributeValue

The attribute value.

See Also
SAMLIdentifiers.AttributeNameFormats
XmlSchema.SimpleTypes

SAMLAttribute(String, String, String, String, String)

Initializes a new instance of the SAMLAttribute class.

Declaration
public SAMLAttribute(string name, string nameFormat, string friendlyName, string attributeType, string attributeValue)
Parameters
Type Name Description
System.String name

The attribute name.

System.String nameFormat

The name format.

System.String friendlyName

The friendly name.

System.String attributeType

The attribute type.

System.String attributeValue

The attribute value.

See Also
SAMLIdentifiers.AttributeNameFormats
XmlSchema.SimpleTypes

SAMLAttribute(XmlElement)

Initializes a new instance of the SAMLAttribute class from XML.

Declaration
public SAMLAttribute(XmlElement xmlElement)
Parameters
Type Name Description
System.Xml.XmlElement xmlElement

The attribute XML.

Exceptions
Type Condition
SAMLSerializationException

Thrown when the XML deserialization fails.

Methods

IsValid(XmlElement)

Indicates whether the XML is an attribute.

Declaration
public static bool IsValid(XmlElement xmlElement)
Parameters
Type Name Description
System.Xml.XmlElement xmlElement

The XML to test.

Returns
Type Description
System.Boolean

true if the XML is an attribute; otherwise false.

ToXml(XmlDocument)

Serializes the attribute to XML.

Declaration
public XmlElement ToXml(XmlDocument xmlDocument)
Parameters
Type Name Description
System.Xml.XmlDocument xmlDocument

The owning XML document.

Returns
Type Description
System.Xml.XmlElement

The attribute as XML.

Exceptions
Type Condition
SAMLSerializationException

Thrown when the XML serialization fails.

In This Article
Back to top Copyright © ComponentSpace Pty Ltd 2004-2022. All rights reserved.