PropertiesParserGetPropertyGroup Method (String, Boolean, String)

Quartz.NET 3.0 API Documentation
Get all properties that start with the given prefix.

Namespace:  Quartz.Util
Assembly:  Quartz (in Quartz.dll) Version: 3.0.0
Syntax

C#
public virtual NameValueCollection GetPropertyGroup(
	string prefix,
	bool stripPrefix,
	string[] excludedPrefixes
)

Parameters

prefix
Type: SystemString
The prefix for which to search. If it does not end in a "." then one will be added to it for search purposes.
stripPrefix
Type: SystemBoolean
Whether to strip off the given prefix in the result's keys.
excludedPrefixes
Type: SystemString
Optional array of fully qualified prefixes to exclude. For example if is "a.b.c", then might be "a.b.c.ignore".

Return Value

Type: NameValueCollection
Group of NameValueCollection that start with the given prefix, optionally have that prefix removed, and do not include properties that start with one of the given excluded prefixes.
See Also

Reference