Microsoft.Protocols.TestSuites.MS_OXORULE.FolderEntryID.FolderEntryID C# (CSharp) Method

FolderEntryID() public method

Initializes a new instance of the FolderEntryID class.
public FolderEntryID ( StoreObjectType objectType ) : System
objectType StoreObjectType Identify store object is a mailbox or a public folder.
return System
        public FolderEntryID(StoreObjectType objectType)
        {
            if (objectType == StoreObjectType.Mailbox)
            {
                this.folderType = new byte[] { 0x01, 0x00 };
            }
            else
            {
                this.folderType = new byte[] { 0x03, 0x00 };
            }
        }

Same methods

FolderEntryID::FolderEntryID ( StoreObjectType objectType, byte providerUID, byte databaseGUID, byte globalCounter ) : System