Microsoft.Protocols.TestSuites.MS_OXCROPS.S06_PropertyROPs.CreateFolderPropertyTags C# (CSharp) Method

CreateFolderPropertyTags() private method

Create property tags for folder
private CreateFolderPropertyTags ( ) : Microsoft.Protocols.TestSuites.Common.PropertyTag[]
return Microsoft.Protocols.TestSuites.Common.PropertyTag[]
        private PropertyTag[] CreateFolderPropertyTags()
        {
            PropertyTag[] tags = new PropertyTag[8];

            // PidTagOfflineAddressBookName
            tags[0] = this.propertyDictionary[PropertyNames.PidTagOfflineAddressBookName];

            // PidTagOfflineAddressBookSequence
            tags[1] = this.propertyDictionary[PropertyNames.PidTagOfflineAddressBookSequence];

            // PidTagOfflineAddressBookContainerGuid
            tags[2] = this.propertyDictionary[PropertyNames.PidTagOfflineAddressBookContainerGuid];

            // PidTagOfflineAddressBookMessageClass
            tags[3] = this.propertyDictionary[PropertyNames.PidTagOfflineAddressBookMessageClass];

            // PidTagOfflineAddressDistinguishedName
            tags[4] = this.propertyDictionary[PropertyNames.PidTagOfflineAddressBookDistinguishedName];

            // PidTagSortLocaleId
            tags[5] = this.propertyDictionary[PropertyNames.PidTagSortLocaleId];

            // PidTagMessageCodePage
            tags[6] = this.propertyDictionary[PropertyNames.PidTagMessageCodepage];

            // PidTagEntryId
            tags[7] = this.propertyDictionary[PropertyNames.PidTagEntryId];

            return tags;
        }