This topic has not yet been rated - Rate this topic

RunatServerRegex Class

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Provides a regular expression to parse an ASP.NET runat attribute.

System.Object
  System.Text.RegularExpressions.Regex
    System.Web.RegularExpressions.RunatServerRegex

Namespace:  System.Web.RegularExpressions
Assembly:  System.Web.RegularExpressions (in System.Web.RegularExpressions.dll)
public class RunatServerRegex : Regex

The RunatServerRegex type exposes the following members.

  Name Description
Public method RunatServerRegex Initializes a new instance of the RunatServerRegex class.
Top
  Name Description
Public property Options Returns the options passed into the Regex constructor. (Inherited from Regex.)
Public property RightToLeft Gets a value indicating whether the regular expression searches from right to left. (Inherited from Regex.)
Top
  Name Description
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetGroupNames Returns an array of capturing group names for the regular expression. (Inherited from Regex.)
Public method GetGroupNumbers Returns an array of capturing group numbers that correspond to group names in an array. (Inherited from Regex.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method GroupNameFromNumber Gets the group name that corresponds to the specified group number. (Inherited from Regex.)
Public method GroupNumberFromName Returns the group number that corresponds to the specified group name. (Inherited from Regex.)
Protected method InitializeReferences Infrastructure. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.)
Public method IsMatch(String) Indicates whether the regular expression specified in the Regex constructor finds a match in a specified input string. (Inherited from Regex.)
Public method IsMatch(String, Int32) Indicates whether the regular expression specified in the Regex constructor finds a match in the specified input string, beginning at the specified starting position in the string. (Inherited from Regex.)
Public method Match(String) Searches the specified input string for the first occurrence of the regular expression specified in the Regex constructor. (Inherited from Regex.)
Public method Match(String, Int32) Searches the input string for the first occurrence of a regular expression, beginning at the specified starting position in the string. (Inherited from Regex.)
Public method Match(String, Int32, Int32) Searches the input string for the first occurrence of a regular expression, beginning at the specified starting position and searching only the specified number of characters. (Inherited from Regex.)
Public method Matches(String) Searches the specified input string for all occurrences of a regular expression. (Inherited from Regex.)
Public method Matches(String, Int32) Searches the specified input string for all occurrences of a regular expression, beginning at the specified starting position in the string. (Inherited from Regex.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Replace(String, String) Within a specified input string, replaces all strings that match a regular expression pattern with a specified replacement string. (Inherited from Regex.)
Public method Replace(String, MatchEvaluator) Within a specified input string, replaces all strings that match a specified regular expression with a string returned by a MatchEvaluator delegate. (Inherited from Regex.)
Public method Replace(String, String, Int32) Within a specified input string, replaces a specified maximum number of strings that match a regular expression pattern with a specified replacement string. (Inherited from Regex.)
Public method Replace(String, MatchEvaluator, Int32) Within a specified input string, replaces a specified maximum number of strings that match a regular expression pattern with a string returned by a MatchEvaluator delegate. (Inherited from Regex.)
Public method Replace(String, String, Int32, Int32) Within a specified input substring, replaces a specified maximum number of strings that match a regular expression pattern with a specified replacement string. (Inherited from Regex.)
Public method Replace(String, MatchEvaluator, Int32, Int32) Within a specified input substring, replaces a specified maximum number of strings that match a regular expression pattern with a string returned by a MatchEvaluator delegate. (Inherited from Regex.)
Public method Split(String) Splits the specified input string at the positions defined by a regular expression pattern specified in the Regex constructor. (Inherited from Regex.)
Public method Split(String, Int32) Splits the specified input string a specified maximum number of times at the positions defined by a regular expression specified in the Regex constructor. (Inherited from Regex.)
Public method Split(String, Int32, Int32) Splits the specified input string a specified maximum number of times at the positions defined by a regular expression specified in the Regex constructor. The search for the regular expression pattern starts at a specified character position in the input string. (Inherited from Regex.)
Public method ToString Returns the regular expression pattern that was passed into the Regex constructor. (Inherited from Regex.)
Protected method UseOptionC Infrastructure. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.)
Protected method UseOptionR Infrastructure. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.)
Top
  Name Description
Protected field capnames Infrastructure. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.)
Protected field caps Infrastructure. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.)
Protected field capsize Infrastructure. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.)
Protected field capslist Infrastructure. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.)
Protected field factory Infrastructure. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.)
Protected field pattern Infrastructure. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.)
Protected field roptions Infrastructure. Used by a Regex object generated by the CompileToAssembly method. (Inherited from Regex.)
Top
  Name Description
Explicit interface implemetation Private method ISerializable.GetObjectData Infrastructure. Populates a SerializationInfo object with the data necessary to deserialize the current Regex object. (Inherited from Regex.)
Top

The RunatServerRegex class provides a regular expression to parse an ASP.NET runat="server" attribute.

Note Note

The System.Web.RegularExpressions classes are used internally by the .NET Framework to parse ASP.NET pages.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ