Microsoft.Protocols.TestSuites.Common.RopFindRowRequest.Size C# (CSharp) Method

Size() public method

Return the size of this structure.
public Size ( ) : int
return int
        public int Size()
        {
            int size = (sizeof(byte) * 5) + (sizeof(ushort) * 2);
            if (this.RestrictionData != null)
            {
                size += this.RestrictionData.Length;
            }

            if (this.Bookmark != null)
            {
                size += this.Bookmark.Length;
            }

            return size;
        }
    }
RopFindRowRequest