System.Data.SqlClient.TdsParser.WriteString C# (CSharp) Method

WriteString() private method

private WriteString ( string s, System.Data.SqlClient.TdsParserStateObject stateObj, bool canAccumulate = true ) : System.Threading.Task
s string
stateObj System.Data.SqlClient.TdsParserStateObject
canAccumulate bool
return System.Threading.Task
        private Task WriteString(string s, TdsParserStateObject stateObj, bool canAccumulate = true)
        {
            return WriteString(s, s.Length, 0, stateObj, canAccumulate);
        }

Same methods

TdsParser::WriteString ( string s, int length, int offset, System.Data.SqlClient.TdsParserStateObject stateObj, bool canAccumulate = true ) : System.Threading.Task
TdsParser