Struct CodeLensApplication
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
CodeLensCodeLensInfoThe code lens
RuleApplicationRuleApplicationThe rule application instance
ArgumentsIEnumerable<string>Additional arguments
Properties
Arguments
Additional arguments
public IEnumerable<string> Arguments { readonly get; set; }
Property Value
CodeLens
The code lens
public CodeLensInfo CodeLens { readonly get; set; }
Property Value
RuleApplication
The rule application instance
public RuleApplication RuleApplication { readonly get; set; }