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

Size() public method

Return the size of this structure.
public Size ( ) : int
return int
        public int Size()
        {
            // 15 indicates sizeof (byte) * 7 + sizeof (Uint64)
            int size = sizeof(byte) * 15;
            if (this.NewFolderName != null)
            {
                size += this.NewFolderName.Length;
            }

            return size;
        }
    }
RopCopyFolderRequest