Microsoft.Protocols.TestSuites.MS_OXCFXICS.Deletions.Verify C# (CSharp) 메소드

Verify() 공개 정적인 메소드

Verify that a stream's current position contains a serialized deletions.
public static Verify ( FastTransferStream stream ) : bool
stream FastTransferStream A FastTransferStream.
리턴 bool
        public static bool Verify(FastTransferStream stream)
        {
            return stream.VerifyMarker(Markers.PidTagIncrSyncDel);
        }

Usage Example

예제 #1
0
 /// <summary>
 /// Verify that a stream's current position contains a serialized hierarchySync.
 /// </summary>
 /// <param name="stream">A FastTransferStream.</param>
 /// <returns>If the stream's current position contains
 /// a serialized hierarchySync, return true, else false.</returns>
 public static bool Verify(FastTransferStream stream)
 {
     return((FolderChange.Verify(stream) ||
             Deletions.Verify(stream) ||
             State.Verify(stream)) &&
            stream.VerifyMarker(
                Markers.PidTagIncrSyncEnd,
                (int)stream.Length - MarkersHelper.PidTagLength - (int)stream.Position));
 }
All Usage Examples Of Microsoft.Protocols.TestSuites.MS_OXCFXICS.Deletions::Verify