Glob Class

Retired Content

This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

The latest Unity Application Block information can be found at the Unity Application Block site.

A "glob" is a string matching pattern. It is similar to the matches available in the file system (*.cs, for example). The Glob class implements this string matching.

Namespace:  Microsoft.Practices.Unity.InterceptionExtension
Assembly:  Microsoft.Practices.Unity.Interception (in Microsoft.Practices.Unity.Interception.dll)

Syntax

'Declaration
Public Class Glob
public class Glob
public ref class Glob
public class Glob

Remarks

Glob supports the following metacharacters: * - match zero or more characters ? - match any one character [abc] - match one character if it's in the characters inside the brackets. All other characters in the glob are literals.

Inheritance Hierarchy

System.Object
  Microsoft.Practices.Unity.InterceptionExtension.Glob

See Also

Glob Members

Microsoft.Practices.Unity.InterceptionExtension Namespace