2 instantiations of CustomAttributeTable
AssemblyStripper (2)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Metadata\MetadataTableReader.cs (1)
342 coll.Add (new CustomAttributeTable ());
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Metadata\MetadataTableWriter.cs (1)
176 table = new CustomAttributeTable ();
23 references to CustomAttributeTable
AssemblyStripper (23)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Metadata\BaseMetadataVisitor.cs (1)
119 public virtual void VisitCustomAttributeTable (CustomAttributeTable table)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Metadata\IMetadataVisitor.cs (1)
60 void VisitCustomAttributeTable (CustomAttributeTable table);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Metadata\MetadataTableReader.cs (7)
116 public CustomAttributeTable GetCustomAttributeTable () 118 return (CustomAttributeTable) m_heap [CustomAttributeTable.RId]; 341 if (m_heap.HasTable (CustomAttributeTable.RId)) { 343 m_rows [CustomAttributeTable.RId] = m_binaryReader.ReadInt32 (); 523 public override void VisitCustomAttributeTable (CustomAttributeTable table) 525 int number = m_rows [CustomAttributeTable.RId];
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Metadata\MetadataTableWriter.cs (5)
170 public CustomAttributeTable GetCustomAttributeTable () 172 CustomAttributeTable table = m_heap [CustomAttributeTable.RId] as CustomAttributeTable; 569 WriteCount (CustomAttributeTable.RId);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Metadata\Utilities.cs (1)
495 return typeof (CustomAttributeTable);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\AggressiveReflectionReader.cs (2)
315 if (!m_tHeap.HasTable (CustomAttributeTable.RId)) 318 CustomAttributeTable caTable = m_tableReader.GetCustomAttributeTable ();
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ReflectionWriter.cs (3)
683 CustomAttributeTable caTable = m_tableWriter.GetCustomAttributeTable (); 831 if (th.HasTable (CustomAttributeTable.RId)) 834 th.Sorted |= ((long) 1 << CustomAttributeTable.RId);
AssemblyStripper.cs (3)
215CustomAttributeTable table = (CustomAttributeTable)stripped_tables[CustomAttributeTable.RId];