Edit

Share via


Regex.Caps Property

Definition

Important

This API is not CLS-compliant.

Gets or sets a dictionary that maps numbered capturing groups to their index values.

C#
[System.CLSCompliant(false)]
protected System.Collections.IDictionary? Caps { get; set; }
C#
protected System.Collections.IDictionary Caps { get; set; }
C#
[System.CLSCompliant(false)]
protected System.Collections.IDictionary Caps { get; set; }

Property Value

A dictionary that maps numbered capturing groups to their index values.

Attributes

Exceptions

The value assigned to the Caps property in a set operation is null.

Remarks

Note that this property is protected; it can only be accessed from a class derived from the Regex class.

A set operation attempts to convert the value assigned to the property to a Hashtable object; if this conversion fails, it calls the Hashtable.Hashtable(IDictionary) constructor.

Applies to