Defines the options that are available to modify how wildcard patterns are matched.
Namespace: System.Management.Automation
Assembly: System.Management.Automation (in system.management.automation.dll)

Usage

Syntax
<FlagsAttribute> _
Public Enumeration WildcardOptions
[FlagsAttribute]
public enum WildcardOptions
[FlagsAttribute]
public enum class WildcardOptions
/** @attribute FlagsAttribute() */
public enum WildcardOptions
FlagsAttribute
public enum WildcardOptions

Members
| Member name | Description |
|---|
| Compiled | The wildcard pattern is compiled to an assembly. This yields faster execution but increases startup time. |
| CultureInvariant | Ignores cultural differences in language when matching the wildcard pattern. This field is introduced in Windows PowerShell 2.0. |
| IgnoreCase | Matching is performed on a case-insensitive basis. |
| None | No special processing is required. |

Remarks
For more information about how a wildcard pattern is set, see WildcardPattern.

Platforms
Development Platforms
Windows Server 2008, Windows Vista, Windows Server 2003, Windows XP, Windows 7, Windows 2008 R2
Target Platforms
Windows Server 2008, Windows Server 2003, Windows Vista, Windows XP, Windows 7, Windows 2008 R2

See Also