Chia sẻ qua


EndpointContext<TOptions> Class

 

Base class used for certain event contexts

Namespace:   Microsoft.Owin.Security.Provider
Assembly:  Microsoft.Owin.Security (in Microsoft.Owin.Security.dll)

Inheritance Hierarchy

System.Object
  Microsoft.Owin.Security.Provider.BaseContext<TOptions>
    Microsoft.Owin.Security.Provider.EndpointContext<TOptions>
      Microsoft.Owin.Security.OAuth.OAuthAuthorizationEndpointResponseContext
      Microsoft.Owin.Security.OAuth.OAuthAuthorizeEndpointContext
      Microsoft.Owin.Security.OAuth.OAuthMatchEndpointContext
      Microsoft.Owin.Security.OAuth.OAuthTokenEndpointContext
      Microsoft.Owin.Security.OAuth.OAuthTokenEndpointResponseContext

Syntax

public abstract class EndpointContext<TOptions> : BaseContext<TOptions>
generic<typename TOptions>
public ref class EndpointContext abstract : BaseContext<TOptions>
[<AbstractClass>]
type EndpointContext<'TOptions> = 
    class
        inherit BaseContext<'TOptions>
    end
Public MustInherit Class EndpointContext(Of TOptions)
    Inherits BaseContext(Of TOptions)

Constructors

Name Description
System_CAPS_protmethod EndpointContext<TOptions>(IOwinContext, TOptions)

Creates an instance of this context

Properties

Name Description
System_CAPS_pubproperty IsRequestCompleted

True if the request should not be processed further by other components.

System_CAPS_pubproperty Options

(Inherited from BaseContext<TOptions>.)

System_CAPS_pubproperty OwinContext

(Inherited from BaseContext<TOptions>.)

System_CAPS_pubproperty Request

(Inherited from BaseContext<TOptions>.)

System_CAPS_pubproperty Response

(Inherited from BaseContext<TOptions>.)

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 RequestCompleted()

Prevents the request from being processed further by other components. IsRequestCompleted becomes true after calling.

System_CAPS_pubmethod ToString()

(Inherited from Object.)

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

Microsoft.Owin.Security.Provider Namespace

Return to top