| DocumentationSourceAssemblies Method |
This returns a collection of assemblies based on the specified wildcard.
Namespace: SandcastleBuilder.UtilsAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax public static Collection<string> Assemblies(
string wildcard,
bool includeSubfolders
)
Public Shared Function Assemblies (
wildcard As String,
includeSubfolders As Boolean
) As Collection(Of String)
public:
static Collection<String^>^ Assemblies(
String^ wildcard,
bool includeSubfolders
)
static member Assemblies :
wildcard : string *
includeSubfolders : bool -> Collection<string>
Parameters
- wildcard
- Type: SystemString
The wildcard to use to find assemblies. - includeSubfolders
- Type: SystemBoolean
If true and the wildcard parameter includes wildcard characters,
subfolders will be searched as well. If not, only the top-level folder is searched.
Return Value
Type:
CollectionStringA list of assemblies matching the wildcard
See Also