Exemple #1
0
        public void SetCustomMessageBodyPartProperty(string propertyName, string propertyNamespace, object value, TypeEnum type)
        {
            string identifier = InMsg.BodyPartName;
            SetMessagePartPropertyPipelineInstruction instruction = new SetMessagePartPropertyPipelineInstruction(propertyName, propertyNamespace, identifier, value, type);

            base.AddInstruction(instruction);
        }
Exemple #2
0
        public void SetCustomMessagePartProperty(string propertyName, string propertyNamespace, MessagePartIdentifierType identifierType, string identifier, object value, TypeEnum type)
        {
            identifier = GetPartName(identifierType, identifier);
            SetMessagePartPropertyPipelineInstruction instruction = new SetMessagePartPropertyPipelineInstruction(propertyName, propertyNamespace, identifier, value, type);

            base.AddInstruction(instruction);
        }
Exemple #3
0
        public void SetMIMEFileNameMessageBodyPartProperty(string value)
        {
            string identifier = InMsg.BodyPartName;
            SetMessagePartPropertyPipelineInstruction instruction = new SetMessagePartPropertyPipelineInstruction(BizTalkMIMEPropertySchemaEnum.FileName.ToString(), ContextPropertyNamespaces._MIMEPropertyNamespace,
                                                                                                                  identifier, value);

            base.AddInstruction(instruction);
        }