EndpointContext<TOptions> Class

Base class used for certain event contexts

Inheritance Hierarchy

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

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

Syntax

'Declaration
Public MustInherit Class EndpointContext(Of TOptions) _
    Inherits BaseContext(Of TOptions)
'Usage
Dim instance As EndpointContext(Of TOptions)
public abstract class EndpointContext<TOptions> : BaseContext<TOptions>
generic<typename TOptions>
public ref class EndpointContext abstract : public BaseContext<TOptions>
[<AbstractClassAttribute>]
type EndpointContext<'TOptions> =  
    class 
        inherit BaseContext<'TOptions>
    end
JScript does not support generic types and methods.

Type Parameters

  • TOptions

The EndpointContext<TOptions> type exposes the following members.

Constructors

  Name Description
Protected method EndpointContext<TOptions> Creates an instance of this context

Top

Properties

  Name Description
Public property IsRequestCompleted True if the request should not be processed further by other components.
Public property Options (Inherited from BaseContext<TOptions>.)
Public property OwinContext (Inherited from BaseContext<TOptions>.)
Public property Request (Inherited from BaseContext<TOptions>.)
Public property Response (Inherited from BaseContext<TOptions>.)

Top

Methods

  Name Description
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Protected method MemberwiseClone (Inherited from Object.)
Public method RequestCompleted Prevents the request from being processed further by other components. IsRequestCompleted becomes true after calling.
Public method ToString (Inherited from Object.)

Top

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

Reference

Microsoft.Owin.Security.Provider Namespace