DocFX + Singulink = ♥

Class StreamRegexMatch

A sliding buffer match from a .

Inheritance
Object
SlidingBufferMatch
StreamRegexMatch
Implements
IEquatable<SlidingBufferMatch>
IEquatable<StreamRegexMatch>
Inherited Members
SlidingBufferMatch.Success
SlidingBufferMatch.Length
SlidingBufferMatch.Value
SlidingBufferMatch.Index
Namespace: StreamRegex.Extensions.RegexExtensions
Assembly: StreamRegex.Extensions.dll
Syntax
public class StreamRegexMatch : SlidingBufferMatch

Constructors

| Improve this Doc View Source

StreamRegexMatch(Nullable<Regex>, Boolean, Int64, Int64, Nullable<String>)

A sliding buffer match from a .

Declaration
public StreamRegexMatch(Regex? Engine = null, bool Success = false, long Index = null, long Length = null, string? Value = null)
Parameters
Type Name Description
Nullable<Regex> Engine

The which produced this match, or null if Success is false

Boolean Success

If them match was successful.

Int64 Index

If Success is true, the index in the Stream where the match was found. Otherwise -1.

Int64 Length

If Success is true, the length of the match in the Stream Otherwise -1.

Nullable<String> Value

The content that was matched, or null if Success is false or if CaptureValues is false.

Properties

| Improve this Doc View Source

Engine

Declaration
public Regex? Engine { get; set; }
Property Value
Type Description
Nullable<Regex>

Implements

System.IEquatable<T>
System.IEquatable<T>