System.Net.KnownHttpVerb.KnownHttpVerb C# (CSharp) Method

KnownHttpVerb() private method

private KnownHttpVerb ( string name, bool requireContentBody, bool contentBodyNotAllowed, bool connectRequest, bool expectNoContentResponse ) : System.IO
name string
requireContentBody bool
contentBodyNotAllowed bool
connectRequest bool
expectNoContentResponse bool
return System.IO
        internal KnownHttpVerb(string name, bool requireContentBody, bool contentBodyNotAllowed, bool connectRequest, bool expectNoContentResponse) {
            Name = name;
            RequireContentBody = requireContentBody;
            ContentBodyNotAllowed = contentBodyNotAllowed;
            ConnectRequest = connectRequest;
            ExpectNoContentResponse = expectNoContentResponse;
        }

Same methods

KnownHttpVerb::KnownHttpVerb ( ) : System.IO