Exemple #1
0
 /// <summary>
 /// Setup an Instruction that will either promote or write a specified value to a context property within the FILE 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 SetFILEContextProperty(BizTalkFilePropertySchemaEnum property, object value, ContextInstructionTypeEnum promotion, TypeEnum type)
 {
     SetCustomContextProperty(property.ToString(), ContextPropertyNamespaces._FILEPropertyNamespace, value, promotion, type);
 }
Exemple #2
0
 /// <summary>
 /// Get the object value of a context property in the FILE 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 GetFILEPropertySchemasContextProperty(BizTalkFilePropertySchemaEnum property, FailureActionEnum failureAction)
 {
     return(GetContextProperty(property.ToString(), ContextPropertyNamespaces._FILEPropertyNamespace, failureAction));
 }