ValeRule

The ValeRule class does something.

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

This example demonstrates something.

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)