Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
CompletionResultType Enum
Definition
- Namespace:
- System.Management.Automation
- Assembly:
- System.Management.Automation.dll
- Package:
- Microsoft.PowerShell.5.1.ReferenceAssemblies v1.0.0
- Package:
- System.Management.Automation v7.4.15
- Package:
- System.Management.Automation v7.5.6
- Package:
- System.Management.Automation v7.6.1
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Possible types of CompletionResults.
public enum class CompletionResultType
public enum CompletionResultType
type CompletionResultType =
Public Enum CompletionResultType
- Inheritance
-
CompletionResultType
Fields
| Name | Value | Description |
|---|---|---|
| Text | 0 | An unknown result type, kept as text only. |
| History | 1 | A history result type like the items out of get-history. |
| Command | 2 | A command result type like the items out of get-command. |
| ProviderItem | 3 | A provider item. |
| ProviderContainer | 4 | A provider container. |
| Property | 5 | A property result type like the property items out of get-member. |
| Method | 6 | A method result type like the method items out of get-member. |
| ParameterName | 7 | A parameter name result type like the Parameters property out of get-command items. |
| ParameterValue | 8 | A parameter value result type. |
| Variable | 9 | A variable result type like the items out of get-childitem variable. |
| Namespace | 10 | A namespace. |
| Type | 11 | A type name. |
| Keyword | 12 | A keyword. |
| DynamicKeyword | 13 | A dynamic keyword. |
