MAPIInspector.Parsers.FastTransferStream.VerifyUInt32 C# (CSharp) Метод

VerifyUInt32() публичный Метод

Get a uint value and do not advance the position.
public VerifyUInt32 ( ) : uint
Результат uint
        public uint VerifyUInt32()
        {
            return BitConverter.ToUInt32(
                this.GetBuffer(),
                (int)this.Position);
        }

Usage Example

 /// <summary>
 /// Verify that a stream's current position contains a serialized PropValue.
 /// </summary>
 /// <param name="stream">A FastTransferStream.</param>
 /// <returns>If the stream's current position contains a serialized PropValue, return true, else false.</returns>
 public static bool Verify(FastTransferStream stream)
 {
     return !stream.IsEndOfStream
         && (FixedPropTypePropValue.Verify(stream) || VarPropTypePropValue.Verify(stream) || MvPropTypePropValue.Verify(stream))
         && !MarkersHelper.IsMarker(stream.VerifyUInt32())
         && !MarkersHelper.IsMetaTag(stream.VerifyUInt32());
 }
All Usage Examples Of MAPIInspector.Parsers.FastTransferStream::VerifyUInt32