7 instantiations of Int32Collection
PresentationCore (3)
System\Windows\Media\Generated\Int32Collection.cs (3)
415Int32Collection collection = new Int32Collection(); 507return new Int32Collection(); 702Int32Collection 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)
6193DefaultConstructor = delegate () { return new System.Windows.Media.Int32Collection(); },
System\Windows\Markup\KnownTypes.cs (1)
1333case KnownElements.Int32Collection: o = new System.Windows.Media.Int32Collection(); break;
System\Windows\Markup\XamlInt32CollectionSerializer.cs (1)
279theCollection = new Int32Collection( count );
49 references to Int32Collection
PresentationCore (40)
MS\Internal\Media3D\GeneralTransform2DTo3DTo2D.cs (1)
262Int32Collection triIndices = _geometry.TriangleIndices;
System\Windows\Media\Converters\Generated\Int32CollectionValueSerializer.cs (3)
36if (!(value is Int32Collection)) 51return Int32Collection.Parse(value ); 64if (value is Int32Collection instance)
System\Windows\Media\Generated\Int32Collection.cs (19)
39public new Int32Collection Clone() 41return (Int32Collection)base.Clone(); 48public new Int32Collection CloneCurrentValue() 50return (Int32Collection)base.CloneCurrentValue(); 409internal static Int32Collection Empty 415Int32Collection collection = new Int32Collection(); 484private static Int32Collection s_empty; 514Int32Collection sourceInt32Collection = (Int32Collection) source; 532Int32Collection sourceInt32Collection = (Int32Collection) source; 550Int32Collection sourceInt32Collection = (Int32Collection) source; 568Int32Collection sourceInt32Collection = (Int32Collection) source; 697public static Int32Collection Parse(string source) 702Int32Collection resource = new Int32Collection(); 755internal Enumerator(Int32Collection list) 865private Int32Collection _list;
System\Windows\Media\Generated\Int32CollectionConverter.cs (4)
82return Int32Collection.Parse(source); 104if (destinationType != null && value is Int32Collection) 106Int32Collection instance = (Int32Collection)value;
System\Windows\Media3D\GeneralTransform2DTo3D.cs (1)
181private Int32Collection _triIndices;
System\Windows\Media3D\Generated\MeshGeometry3D.cs (7)
137public Int32Collection TriangleIndices 141return (Int32Collection) GetValue(TriangleIndicesProperty); 193Int32Collection vTriangleIndices = TriangleIndices; 378internal static Int32Collection s_TriangleIndices = Int32Collection.Empty; 446typeof(Int32Collection), 448new FreezableDefaultValueFactory(Int32Collection.Empty),
System\Windows\Media3D\MeshGeometry3D.cs (1)
180Int32Collection indices = TriangleIndices;
System\Windows\Media3D\Viewport2DVisual3D.cs (4)
43Int32Collection triIndices) 628internal Int32Collection InternalTriangleIndicesCache 642_triangleIndicesCache = (Int32Collection)_triangleIndicesCache.GetCurrentValueAsFrozen(); 930private Int32Collection _triangleIndicesCache = null;
PresentationFramework (9)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
407case 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)
6190typeof(System.Windows.Media.Int32Collection),
System\Windows\Markup\KnownTypes.cs (1)
5861case KnownElements.Int32Collection: t = typeof(System.Windows.Media.Int32Collection); break;
System\Windows\Markup\XamlInt32CollectionSerializer.cs (4)
86Int32Collection ints = Int32Collection.Parse( stringValue ); 264private static Int32Collection DeserializeFrom( BinaryReader reader ) 266Int32Collection theCollection;