1

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?

2
  • 1
    That style comment is used to generate XMLDoc documentation for code. It's needed unless you're willing to write your own documentation manually.
    – Ken White
    Commented Sep 18, 2022 at 16:17
  • 1
    See my answer here for an example of documenting Delphi code using XMLDoc notation.
    – Ken White
    Commented Sep 18, 2022 at 16:23

0

Browse other questions tagged or ask your own question.