Encog.Util.HTTP.FormUtility.Write C# (CSharp) Method

Write() private method

Write the specified string, without a carriage return and line feed.
private Write ( String str ) : void
str String The string to write.
return void
        private void Write(String str)
        {
            _writer.Write(str);
            _writer.Flush();
        }