Delegate PatternMatch
A delegate used to determine if a node name matches a pattern.
Namespace: AkiraNetwork.VirtualStorageLibrary
Assembly: VirtualStorageLibrary.dll
Syntax
public delegate bool PatternMatch(string nodeName, string pattern)
Parameters
Type | Name | Description |
---|---|---|
string | nodeName | The name of the node to be matched. |
string | pattern | The pattern to match against. |
Returns
Type | Description |
---|---|
bool | True if the node name matches the pattern; otherwise, false. |