CustomModule Class

 

Provides a reference to a user provided extensibility class. Custom modules implement interfaces defined in WebSSO.

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

Inheritance Hierarchy

System.Object
  System.Web.Security.SingleSignOn.TrustPolicyEntryBase
    System.Web.Security.SingleSignOn.CustomModule
      System.Web.Security.SingleSignOn.CustomTransform

Syntax

[ComVisibleAttribute(true)]
public class CustomModule : TrustPolicyEntryBase
[ComVisibleAttribute(true)]
public ref class CustomModule : TrustPolicyEntryBase
[<ComVisibleAttribute(true)>]
type CustomModule = 
    class
        inherit TrustPolicyEntryBase
    end
<ComVisibleAttribute(True)>
Public Class CustomModule
    Inherits TrustPolicyEntryBase

Constructors

Name Description
System_CAPS_pubmethod CustomModule()

Initializes a new instance of the CustomModule class.

Properties

Name Description
System_CAPS_pubproperty AssemblyPath

Gets and sets the path to the assembly for this module.

System_CAPS_pubproperty ClassType

Gets and sets the name of the class which contains the extensibility code.

System_CAPS_pubproperty Disabled

Gets or sets whether the trust with this realm is currently active. If this is set, no tokens will be accepted from this partner.(Inherited from TrustPolicyEntryBase.)

System_CAPS_pubproperty uuid

Gets or sets the universal unique identifier (UUID) for this TrustPolicyEntryBase object.(Inherited from TrustPolicyEntryBase.)

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Remarks

Custom modules will be registered in the trust policy by specifying the custom assembly name, the path to the assembly, and the name of the class implementing the interface.

Thread Safety

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

System.Web.Security.SingleSignOn Namespace

Return to top