7 instantiations of Int32Collection
PresentationCore (3)
System\Windows\Media\Generated\Int32Collection.cs (3)
426Int32Collection collection = new Int32Collection(); 518return new Int32Collection(); 717Int32Collection resource = new Int32Collection();
PresentationFramework (4)
System\Windows\Markup\Baml2006\Baml2006Reader.cs (1)
1441System.Windows.Media.Int32Collection ints = new System.Windows.Media.Int32Collection(capacity);
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6192DefaultConstructor = delegate () { return new System.Windows.Media.Int32Collection(); },
System\Windows\Markup\KnownTypes.cs (1)
1332case KnownElements.Int32Collection: o = new System.Windows.Media.Int32Collection(); break;
System\Windows\Markup\XamlInt32CollectionSerializer.cs (1)
278theCollection = new Int32Collection( count );
49 references to Int32Collection
PresentationCore (40)
MS\Internal\Media3D\GeneralTransform2DTo3DTo2D.cs (1)
255Int32Collection triIndices = _geometry.TriangleIndices;
System\Windows\Media\Converters\Generated\Int32CollectionValueSerializer.cs (3)
47if (!(value is Int32Collection)) 62return Int32Collection.Parse(value ); 75if (value is Int32Collection instance)
System\Windows\Media\Generated\Int32Collection.cs (19)
46public new Int32Collection Clone() 48return (Int32Collection)base.Clone(); 55public new Int32Collection CloneCurrentValue() 57return (Int32Collection)base.CloneCurrentValue(); 420internal static Int32Collection Empty 426Int32Collection collection = new Int32Collection(); 495private static Int32Collection s_empty; 525Int32Collection sourceInt32Collection = (Int32Collection) source; 544Int32Collection sourceInt32Collection = (Int32Collection) source; 563Int32Collection sourceInt32Collection = (Int32Collection) source; 582Int32Collection sourceInt32Collection = (Int32Collection) source; 712public static Int32Collection Parse(string source) 717Int32Collection resource = new Int32Collection(); 770internal Enumerator(Int32Collection list) 881private Int32Collection _list;
System\Windows\Media\Generated\Int32CollectionConverter.cs (4)
91return Int32Collection.Parse(source); 113if (destinationType != null && value is Int32Collection) 115Int32Collection instance = (Int32Collection)value;
System\Windows\Media3D\GeneralTransform2DTo3D.cs (1)
180private Int32Collection _triIndices;
System\Windows\Media3D\Generated\MeshGeometry3D.cs (7)
160public Int32Collection TriangleIndices 164return (Int32Collection) GetValue(TriangleIndicesProperty); 216Int32Collection vTriangleIndices = TriangleIndices; 410internal static Int32Collection s_TriangleIndices = Int32Collection.Empty; 477typeof(Int32Collection), 479new FreezableDefaultValueFactory(Int32Collection.Empty),
System\Windows\Media3D\MeshGeometry3D.cs (1)
179Int32Collection indices = TriangleIndices;
System\Windows\Media3D\Viewport2DVisual3D.cs (4)
42Int32Collection triIndices) 627internal Int32Collection InternalTriangleIndicesCache 641_triangleIndicesCache = (Int32Collection)_triangleIndicesCache.GetCurrentValueAsFrozen(); 929private Int32Collection _triangleIndicesCache = null;
PresentationFramework (9)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
406case 313: t = () => typeof(Int32Collection); break;
System\Windows\Markup\Baml2006\Baml2006Reader.cs (2)
1430private System.Windows.Media.Int32Collection GetInt32Collection() 1441System.Windows.Media.Int32Collection ints = new System.Windows.Media.Int32Collection(capacity);
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6189typeof(System.Windows.Media.Int32Collection),
System\Windows\Markup\KnownTypes.cs (1)
5860case KnownElements.Int32Collection: t = typeof(System.Windows.Media.Int32Collection); break;
System\Windows\Markup\XamlInt32CollectionSerializer.cs (4)
85Int32Collection ints = Int32Collection.Parse( stringValue ); 263private static Int32Collection DeserializeFrom( BinaryReader reader ) 265Int32Collection theCollection;