Owin.RequestWriter.SetContentType C# (CSharp) Method

SetContentType() public method

public SetContentType ( string type ) : RequestWriter
type string
return RequestWriter
        public virtual RequestWriter SetContentType(string type)
        {
            ContentType = type;
            return this;
        }