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

Size() public method

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