Show / Hide Table of Contents

Class ReverseOptions

Options for the 'reverse()' operation.

Inheritance
object
ReverseOptions
Implements
IReverseOptions
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ReverseOptions : IReverseOptions
Syntax (vb)
Public Class ReverseOptions Implements IReverseOptions
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;

            var reverseOptions = new ReverseOptions {
                FailConcat = false
            };

Synopsis

Constructors

ReverseOptions()

Options for the 'reverse()' operation.

Properties

FailConcat

Fail if the given string is a concatenation.

Constructors

ReverseOptions()

Options for the 'reverse()' operation.

public ReverseOptions()
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;

            var reverseOptions = new ReverseOptions {
                FailConcat = false
            };

Properties

FailConcat

Fail if the given string is a concatenation.

public bool? FailConcat { get; set; }
Property Value

bool?

Remarks

If false, just return undefined.

Default: true

Implements

IReverseOptions
Back to top Generated by DocFX