Microsoft.Protocols.TestSuites.MS_OXCROPS.S03_TableROPs.CreateSampleContentsTableWith8PropertyTags C# (CSharp) Method

CreateSampleContentsTableWith8PropertyTags() private method

Create Sample ContentsTable PropertyTags
private CreateSampleContentsTableWith8PropertyTags ( ) : Microsoft.Protocols.TestSuites.Common.PropertyTag[]
return Microsoft.Protocols.TestSuites.Common.PropertyTag[]
        private PropertyTag[] CreateSampleContentsTableWith8PropertyTags()
        {
            // The following sample tags is from [MS-OXCTABL].
            PropertyTag[] propertyTags = new PropertyTag[8];

            // PidTagFolderId
            propertyTags[0] = this.propertyDictionary[PropertyNames.PidTagFolderId];

            // PidTagMid
            propertyTags[1] = this.propertyDictionary[PropertyNames.PidTagMid];

            // PidTagInstID
            propertyTags[2] = this.propertyDictionary[PropertyNames.PidTagInstID];

            // PidTagInstanceNum
            propertyTags[3] = this.propertyDictionary[PropertyNames.PidTagInstanceNum];

            // PidTagSubject
            propertyTags[4] = this.propertyDictionary[PropertyNames.PidTagSubject];

            // PidTagMessageDeliveryTime
            propertyTags[5] = this.propertyDictionary[PropertyNames.PidTagMessageDeliveryTime];

            // PidTagRowType
            propertyTags[6] = this.propertyDictionary[PropertyNames.PidTagRowType];

            // PidTagContentCount
            propertyTags[7] = this.propertyDictionary[PropertyNames.PidTagContentCount];

            return propertyTags;
        }