InvalidOpStreamNonReadable() static private method

static private InvalidOpStreamNonReadable ( string method ) : string
method string
return string
 private void ThrowIfStreamCannotRead(string method)
 {
     if (!this.m_stream.CanRead)
     {
         throw new NotSupportedException(SQLResource.InvalidOpStreamNonReadable(method));
     }
 }