Пример #1
0
 /// <summary>
 /// Get the object value of a context property in the MSMQT namespace
 /// </summary>
 /// <param name="property">The name of the context property</param>
 /// <param name="failureAction">Whether to throw an exception or return a blank string if the property is not found</param>
 /// <returns>The object value of the context property</returns>
 public string GetMSMQTPropertySchemasContextProperty(BizTalkMSMQTPropertySchemaEnum property, FailureActionEnum failureAction)
 {
     return(GetContextProperty(property.ToString(), ContextPropertyNamespaces._MSMQTPropertyNamespace, failureAction));
 }
Пример #2
0
 /// <summary>
 /// Setup an Instruction that will either promote or write a specified value to a context property within the MSMQT namespace
 /// </summary>
 /// <param name="property">The name of the context property</param>
 /// <param name="value">The value to be written/promoted to the context</param>
 /// <param name="promotion">Whether to write or promote the context property</param>
 /// <param name="type">The type to cast the value to</param>
 public void SetMSMQTContextProperty(BizTalkMSMQTPropertySchemaEnum property, object value, ContextInstructionTypeEnum promotion, TypeEnum type)
 {
     SetCustomContextProperty(property.ToString(), ContextPropertyNamespaces._MSMQTPropertyNamespace, value, promotion, type);
 }