ValeRule
The ValeRule class does something.
less than a minute
Definition
Source Code
# Licensed under the MIT License.
class ValeRule {
[string]$Style
[string]$Name
[string]$Path
[hashtable]$Properties
ValeRule([string]$Style, [string]$Name, [string]$Path) {
$this.Style = $Style
$this.Name = $Name
$this.Path = $Path
$this.Properties = $null
}
}
# Copyright (c) Microsoft Corporation.
An instance of the ValeRule class does something.
Examples
1. Parsing a string for links
This example demonstrates something.
2. Filtering a list of links by position
This example demonstrates something.
Constructors
ValeRule()
- Initializes a new instance of the ValeRule class.
Methods
Properties
Last modified March 10, 2023: (GH-71) Document Vale classes (ad1e42a)