Microsoft.Protocols.TestSuites.Common.RopSeekRowBookmarkRequest.Size C# (CSharp) Méthode

Size() public méthode

Return the size of this structure.
public Size ( ) : int
Résultat int
        public int Size()
        { 
            // 10 indicates sizeof(byte) * 4 + sizeof(UInt16) + sizeof(UInt32)
            int size = sizeof(byte) * 10;
            if (this.Bookmark != null)
            {
                size += this.Bookmark.Length;
            }

            return size;
        }
    }
RopSeekRowBookmarkRequest