Table of Contents

Struct CodeLensApplication

Namespace
NMF.AnyText
Assembly
NMF.AnyText.Core.dll

Denotes a code lens applied to a rule application

public record struct CodeLensApplication : IEquatable<CodeLensApplication>
Implements
Inherited Members

Constructors

CodeLensApplication(CodeLensInfo, RuleApplication, IEnumerable<string>)

Denotes a code lens applied to a rule application

public CodeLensApplication(CodeLensInfo CodeLens, RuleApplication RuleApplication, IEnumerable<string> Arguments)

Parameters

CodeLens CodeLensInfo

The code lens

RuleApplication RuleApplication

The rule application instance

Arguments IEnumerable<string>

Additional arguments

Properties

Arguments

Additional arguments

public IEnumerable<string> Arguments { readonly get; set; }

Property Value

IEnumerable<string>

CodeLens

The code lens

public CodeLensInfo CodeLens { readonly get; set; }

Property Value

CodeLensInfo

RuleApplication

The rule application instance

public RuleApplication RuleApplication { readonly get; set; }

Property Value

RuleApplication