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 | |
---|---|---|
EndpointContext<TOptions>(IOwinContext, TOptions) | Creates an instance of this context |
Properties
Name | Description | |
---|---|---|
IsRequestCompleted | True if the request should not be processed further by other components. |
|
Options | (Inherited from BaseContext<TOptions>.) |
|
OwinContext | (Inherited from BaseContext<TOptions>.) |
|
Request | (Inherited from BaseContext<TOptions>.) |
|
Response | (Inherited from BaseContext<TOptions>.) |
Methods
Name | Description | |
---|---|---|
Equals(Object) | (Inherited from Object.) |
|
Finalize() | (Inherited from Object.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
MemberwiseClone() | (Inherited from Object.) |
|
RequestCompleted() | Prevents the request from being processed further by other components. IsRequestCompleted becomes true after calling. |
|
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