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

FormUtility() public method

Prepare to access either a regular, or multipart, form.
public FormUtility ( Stream os, String boundary ) : System
os Stream The stream to output to.
boundary String The boundary to be used, or null if this is /// not a multipart form.
return System
        public FormUtility(Stream os, String boundary)
        {
            _os = os;
            _writer = new StreamWriter(os);
            _boundary = boundary;
            _first = true;
        }