InvalidOpStreamNonSeekable() static private method

static private InvalidOpStreamNonSeekable ( string method ) : string
method string
return string
 private void ThrowIfStreamCannotSeek(string method)
 {
     if (!this.m_stream.CanSeek)
     {
         throw new NotSupportedException(SQLResource.InvalidOpStreamNonSeekable(method));
     }
 }