Implemented interface member:
property
Name
Microsoft.TemplateEngine.Abstractions.ITemplateParameter.Name
2 writes to Name
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (2)
ConfigModel\TemplateConfigModel.cs (1)
495Name = parameterSymbol.Name,
Parameter.cs (1)
19this.Name = name;
5 references to Name
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (5)
Parameter.cs (5)
16throw new ArgumentException($"{nameof(Name)} property should not be null or whitespace", nameof(name)); 60return $"{Name} ({Type})"; 83public override int GetHashCode() => Name.GetHashCode(); 85public bool Equals(ITemplateParameter other) => !string.IsNullOrEmpty(Name) && !string.IsNullOrEmpty(other.Name) && Name == other.Name;