ModeMatchAttributes<TMode> Class

Summary

A mapping of a @!:ITagHelper- mode to its missing and present attributes.

Inheritance Hierarchy

  • System.Object
  • Microsoft.AspNet.Mvc.TagHelpers.Internal.ModeMatchAttributes<TMode>

Syntax

public class ModeMatchAttributes<TMode>

GitHub

View on GitHub

Microsoft.AspNet.Mvc.TagHelpers.Internal.ModeMatchAttributes<TMode>

Properties

MissingAttributes()

The names of attributes that were missing in this match.

Return type:System.Collections.Generic.IEnumerable{System.String}
public IEnumerable<string> MissingAttributes { get; set; }
Mode()

The @!:ITagHelper-‘s mode.

Return type:TMode
public TMode Mode { get; set; }
PresentAttributes()

The names of attributes that were present in this match.

Return type:System.Collections.Generic.IEnumerable{System.String}
public IEnumerable<string> PresentAttributes { get; set; }