BizTalk Server 2010: Loading properties in custom pipeline components
Posted by: Charles Young,
on 14 Sep 2011 |
View original | Bookmarked: 0 time(s)
Following the previous post, here is a second bit of wisdom. In the Load method of a custom pipeline component, only assign values retrieved from the property bag to your custom properties if the retrieved value is not null. Do not assign any value to a custom property if the retrieved value is null.
This is important because of the way in which pipeline property values are loaded at run time. If you assign one or more property values via the Admin Console (e.g., on a pipeline in a Receive Location),...