1 write to Id
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\DocumentationDescriptor.cs (1)
88Id = id;
11 references to Id
Microsoft.CodeAnalysis.Razor.Compiler (8)
Language\DocumentationDescriptor.cs (1)
105return Id switch
Language\DocumentationDescriptor.FormattedDescriptor.cs (3)
38if (other is not FormattedDescriptor { Id: var id, Args: var args }) 43if (Id != id) 82result.Add(Id);
Language\DocumentationDescriptor.SimpleDescriptor.cs (3)
23=> other is SimpleDescriptor { Id: var id } && Id == id; 26=> (int)Id;
Language\DocumentationObject.cs (1)
33builder.Append((int)descriptor.Id);
rzc (3)
Json\ObjectReaders_TagHelpers.cs (1)
186var id = (DocumentationId)reader.ReadInt32(nameof(DocumentationDescriptor.Id));
Json\ObjectWriters_TagHelpers.cs (2)
37writer.Write(nameof(value.Id), (int)value.Id);