Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This method supports the AD FS infrastructure and is not intended to be used directly from your code. Creates a WebSSO configuration-handler object. This method is used to read the <websso> section of Web.config.
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.ObjectThe configuration settings in a corresponding parent configuration section.
configContext
Type: System.ObjectAn HttpConfigurationContext when Create is called from the Web SSO configuration system.
section
Type: System.Xml.XmlNodeThe XmlNode that contains the configuration data from the configuration file. Provides direct access to the XML contents of the configuration section.
Return Value
Type: System.Object
The WebSSO configuration-handler object
Implements
IConfigurationSectionHandler.Create(Object, Object, XmlNode)
See Also
WebSsoConfigurationHandler Class
System.Web.Security.SingleSignOn Namespace
Return to top