LogonServerConfigurationHandler.Create Method (Object, Object, XmlNode)

 

This method supports the AD FS infrastructure and is not intended for public use.

Namespace:   System.Web.Security.SingleSignOn
Assembly:  System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)

Syntax

public object Create(
    object parent,
    object configContext,
    XmlNode section
)
public:
virtual Object^ Create(
    Object^ parent,
    Object^ configContext,
    XmlNode^ section
) sealed
abstract Create : 
        parent:Object *
        configContext:Object *
        section:XmlNode -> Object
override Create : 
        parent:Object *
        configContext:Object *
        section:XmlNode -> Object
Public Function Create (
    parent As Object,
    configContext As Object,
    section As XmlNode
) As Object

Parameters

  • parent
    Type: System.Object

    The configuration settings in a corresponding parent configuration section.

  • configContext
    Type: System.Object

    An HttpConfigurationContext when Createis called from the ASP.NET configuration system. Otherwise, this parameter is reserved and is a null reference (Nothing in Visual Basic).

  • section
    Type: System.Xml.XmlNode

    The XmlNode that contains the configuration information from the configuration file. Provides direct access to the XML contents of the configuration section.

Return Value

Type: System.Object

A new instance.

Implements

IConfigurationSectionHandler.Create(Object, Object, XmlNode)

See Also

LogonServerConfigurationHandler Class
System.Web.Security.SingleSignOn Namespace

Return to top