OAuth.AspNet.AuthServer.OAuthMatchContext.OAuthMatchContext C# (CSharp) Method

OAuthMatchContext() public method

Initializes a new instance of the OAuthMatchContext class
public OAuthMatchContext ( HttpContext context, OAuthAuthorizationServerOptions options ) : System
context HttpContext
options OAuthAuthorizationServerOptions
return System
        public OAuthMatchContext(HttpContext context, OAuthAuthorizationServerOptions options)
            : base(context)
        {
            if (options == null)
                throw new ArgumentNullException(nameof(options));

            Options = options;
        }