HttpServer.Headers.ContentTypeHeader.ContentTypeHeader C# (CSharp) Method

ContentTypeHeader() public method

Initializes a new instance of the ContentTypeHeader class.
public ContentTypeHeader ( string contentType ) : System
contentType string Type of the content.
return System
        public ContentTypeHeader(string contentType)
        {
            Value = contentType;
            _parameters = new HeaderParameterCollection();
        }

Same methods

ContentTypeHeader::ContentTypeHeader ( string contentType, HttpServer.Headers.HeaderParameterCollection parameterCollection ) : System