Component UtilitiesTo Recognized Syntax Filter Ids Method
This is used to convert the given set of comma-separated syntax filter IDs to a set of recognized
filter IDs.
Definition
Namespace: Sandcastle.Core
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.1.20.0
The validated and recognized set of syntax filter IDs. If possible, the value is condensed to one of a set of combination values such as None, All, AllButUsage, or Standard.
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.1.20.0
C#
public static string ToRecognizedSyntaxFilterIds(
IEnumerable<ISyntaxGeneratorMetadata> allFilters,
string filterIds
)VB
Public Shared Function ToRecognizedSyntaxFilterIds (
allFilters As IEnumerable(Of ISyntaxGeneratorMetadata),
filterIds As String
) As StringC++
public:
static String^ ToRecognizedSyntaxFilterIds(
IEnumerable<ISyntaxGeneratorMetadata^>^ allFilters,
String^ filterIds
)F#
static member ToRecognizedSyntaxFilterIds :
allFilters : IEnumerable<ISyntaxGeneratorMetadata> *
filterIds : string -> string Parameters
- allFilters IEnumerableISyntaxGeneratorMetadata
- The list of all available syntax filter generators
- filterIds String
- A comma-separated list of syntax filter IDs to convert
Return Value
StringThe validated and recognized set of syntax filter IDs. If possible, the value is condensed to one of a set of combination values such as None, All, AllButUsage, or Standard.