Show / Hide Table of Contents

Class RegexMatcher

A regex matcher designed for safety when used with untrusted input.

Inheritance
System.Object
RegexMatcher
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.TrafficDirectorService.v2.Data
Assembly: Google.Apis.TrafficDirectorService.v2.dll
Syntax
public class RegexMatcher : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

GoogleRe2

Google's RE2 regex engine.

Declaration
[JsonProperty("googleRe2")]
public virtual GoogleRE2 GoogleRe2 { get; set; }
Property Value
Type Description
GoogleRE2

Regex

The regex match string. The string must be supported by the configured engine.

Declaration
[JsonProperty("regex")]
public virtual string Regex { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top