ValeViolationAction

The ValeViolationAction class does something.

Definition

Source Code

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

class ValeViolationAction {
    [string]$Name
    [string[]]$Parameters

    [string] ToString() {
        if ([string]::IsNullOrEmpty($this.Name)) {
            return ''
        }

        return "$($this.Name) ($($this.Parameters -join ', '))"
    }
}

An instance of the ValeViolationAction class does something.

Examples

This example demonstrates something.

This example demonstrates something.

Constructors

ValeViolationAction()
Initializes a new instance of the ValeViolationAction class.

Methods

Properties

Last modified March 10, 2023: (GH-71) Document Vale classes (ad1e42a)