Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Gets or sets the maximum number of entries in the current static cache of compiled regular expressions.
Namespace: System.Text.RegularExpressions
Assembly: System.Text.RegularExpressions (in System.Text.RegularExpressions.dll)
Syntax
'Declaration
Public Shared Property CacheSize As Integer
public static int CacheSize { get; set; }
public:
static property int CacheSize {
int get ();
void set (int value);
}
static member CacheSize : int with get, set
static function get CacheSize () : int
static function set CacheSize (value : int)
Property Value
Type: System. . :: . .Int32
The maximum number of entries in the static cache.
Exceptions
Exception | Condition |
---|---|
ArgumentOutOfRangeException | The value in a set operation is less than zero. |
Remarks
The Regex class maintains an internal cache of compiled regular expressions used in static method calls. If the value specified in a set operation is less than the current cache size, cache entries are discarded until the cache size is equal to the specified value.
By default, the cache holds 15 compiled static regular expressions. Your application typically will not have to modify the size of the cache. Use the CacheSize property only when you want to turn off caching or when you have an unusually large cache.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.