Implemented interface member:
property
Name
Microsoft.TemplateEngine.Abstractions.ITemplateParameter.Name
3 writes to Name
Microsoft.TemplateSearch.Common (3)
TemplateDiscoveryMetadata\BlobStorageTemplateInfo.cs (3)
328Name = parameter.Name; 345Name = name; 358Name = name!;
7 references to Name
Microsoft.TemplateSearch.Common (7)
TemplateDiscoveryMetadata\BlobStorageTemplateInfo.cs (7)
326throw new ArgumentException($"{nameof(Name)} property should not be null or whitespace", nameof(parameter)); 352string? name = jObject.ToString(nameof(Name)); 355throw new ArgumentException($"{nameof(Name)} property should not be null or whitespace", nameof(jObject)); 437public override int GetHashCode() => Name != null ? Name.GetHashCode() : 0; 439public bool Equals(ITemplateParameter other) => !string.IsNullOrEmpty(Name) && !string.IsNullOrEmpty(other.Name) && Name == other.Name;