Is comments needed for BizTalk Custom Pipeline Component?

61 Views Asked by At

I'm newbie to BizTalk Custom Pipeline Component. I mean by 'comments' is adding lines like below in pipeline component.

    /// <summary>
    /// Loads configuration properties for the component
    /// </summary>
    /// <param name="propertyBag">Configuration property bag</param>
    /// <param name="errorLog">Error status</param>
    public virtual void Load(Microsoft.BizTalk.Component.Interop.IPropertyBag propertyBag, int errorLog)
    { Code goes here }

What is the use of this /// < summary> and all? Is this really needed to build custom pipeline component?

0

There are 0 best solutions below