System.Data.SqlTypes.SqlChars.FStream C# (CSharp) Method

FStream() private method

private FStream ( ) : bool
return bool
        internal bool FStream()
        {
            return _state == SqlBytesCharsState.Stream;
        }

Usage Example

Beispiel #1
0
 // Flush is a no-op if underlying SqlChars is not a stream on SqlChars
 public override void Flush()
 {
     if (_sqlchars.FStream())
     {
         _sqlchars.m_stream.Flush();
     }
 }