1 instantiation of AttributeTable
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\AttributeTableBuilder.cs (1)
244return new AttributeTable(_table);
18 references to AttributeTable
System.Data (18)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\Metadata\AttributeDataCache.cs (2)
105internal static IEnumerable<object> GetMetadataStoreAttributes(Type type, string memberName, AttributeTable[] tables) { 111foreach (AttributeTable table in tables)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\AttributeTableBuilder.cs (2)
219public void AddTable(AttributeTable table) 241public AttributeTable CreateTable()
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (14)
50public static void AddAttributeTable(AttributeTable table) 55internal static void AddSystemAttributeTable(AttributeTable table) 60private static void AddAttributeTableCore(AttributeTable table, bool isSystemAttributeTable = false) 120private AttributeTable[] _tables; 123internal MetadataStoreProvider(AttributeTable table) 126_tables = new AttributeTable[] { table }; 133internal void AddTable(AttributeTable table, bool isSystemAttributeTable = false) 143AttributeTable[] newTables; 144newTables = new AttributeTable[_tables.Length + 1]; 559foreach (AttributeTable table in _tables) 579foreach (AttributeTable table in _tables) 1048private AttributeTable[] _tables; 1055internal MetadataType(Type baseReflectionType, AttributeTable[] tables, MetadataStoreProvider provider) 1402foreach (AttributeTable table in _tables)