Show / Hide Table of Contents

Interface IMatchCapture

Information about a value captured during match.

Namespace: Amazon.CDK.Assertions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IMatchCapture
Syntax (vb)
Public Interface IMatchCapture
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.Assertions;

            Capture capture;
            var value;

            var matchCapture = new MatchCapture {
                Capture = capture,
                Value = value
            };

Synopsis

Properties

Capture

The instance of Capture class to which this capture is associated with.

Value

The value that was captured.

Properties

Capture

The instance of Capture class to which this capture is associated with.

Capture Capture { get; }
Property Value

Capture

Remarks

ExampleMetadata: fixture=_generated

Value

The value that was captured.

object Value { get; }
Property Value

object

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX