| ApiFilterCollectionMergeEntry Method |
This is used to merge an entry with the filter collection
Namespace: SandcastleBuilder.UtilsAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax public bool MergeEntry(
ApiEntryType entryType,
string fullName,
bool isExposed,
bool isProjectExclude
)
Public Function MergeEntry (
entryType As ApiEntryType,
fullName As String,
isExposed As Boolean,
isProjectExclude As Boolean
) As Boolean
public:
bool MergeEntry(
ApiEntryType entryType,
String^ fullName,
bool isExposed,
bool isProjectExclude
)
member MergeEntry :
entryType : ApiEntryType *
fullName : string *
isExposed : bool *
isProjectExclude : bool -> bool
Parameters
- entryType
- Type: SandcastleBuilder.UtilsApiEntryType
The entry type - fullName
- Type: SystemString
The member's full name - isExposed
- Type: SystemBoolean
True to expose it, false to remove it - isProjectExclude
- Type: SystemBoolean
True if this is a project exclude
(currently this will always be true).
Return Value
Type:
BooleanTrue if merged without conflict or false if the merged
member conflicted with an existing entry. The existing entry
will take precedence.
See Also