How do I ignore the documentation generated by the help file designer for a public class or methods?

How can I omit some public classes or methods from those included in the documentation generated by The SandCastle Help File Builder?

Example. I have the following public class with two public methods:

/// <summary>
/// A simple test class.
/// </summary>
public class MyClass
{
    /// <summary>
    /// Method1s this instance.
    /// </summary>
    public void Method1()
    {
        // Do some operations here.
    }

    /// <summary>
    /// Method2s this instance.
    /// </summary>
    public void Method2()
    {
        // Do some operations here.
    }
}

When I create a help file from this code using SandCastle Help File Builder, I want to ignore it Method2.

+5
source share
2 answers

In the project properties in the Sandcaple Help File Builder GUI, edit the property ApiFilter(click the "..." button) and uncheck the members that you do not want to see in the help file.

+7
source

( , , , , . , .)

SandCastle 31 2014 3 , .

  • .
  • .
  • API; .

API. , (, , ).

+8