InvalidOpStreamNonWritable() static private method

static private InvalidOpStreamNonWritable ( string method ) : string
method string
return string
 private void ThrowIfStreamCannotWrite(string method)
 {
     if (!this.m_stream.CanWrite)
     {
         throw new NotSupportedException(SQLResource.InvalidOpStreamNonWritable(method));
     }
 }