Dev2.Runtime.WebServer.Responses.StringResponseWriter.StringResponseWriter C# (CSharp) Method

StringResponseWriter() public method

public StringResponseWriter ( string text, MediaTypeHeaderValue contentType ) : System.Net.Http
text string
contentType System.Net.Http.Headers.MediaTypeHeaderValue
return System.Net.Http
        public StringResponseWriter(string text, MediaTypeHeaderValue contentType)
        {
            VerifyArgument.IsNotNull("mediaType", contentType);
            _text = text;
            _contentType = contentType;
            _enforceSizeCap = true;
        }
        

Same methods

StringResponseWriter::StringResponseWriter ( string text, MediaTypeHeaderValue contentType, bool enforceSizeCap ) : System.Net.Http
StringResponseWriter::StringResponseWriter ( string text, string contentType ) : System.Net.Http