Created
September 19, 2024 04:39
-
-
Save CN-CODEGOD/2b405bc52c0b250da5d244415ea79d9e to your computer and use it in GitHub Desktop.
pipe parameter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Parameter( | |
| Position = 0, | |
| ValueFromPipeline = true, | |
| ValueFromPipelineByPropertyName = true)] | |
| [ValidateNotNullOrEmpty] | |
| public string[] Name | |
| { | |
| get { return this.processNames; } | |
| set { this.processNames = value; } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment