Microsoft.Protocols.TestSuites.Common.RopCopyFolderRequest.Size C# (CSharp) 메소드

Size() 공개 메소드

Return the size of this structure.
public Size ( ) : int
리턴 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