7 instantiations of Int32Collection
PresentationCore (3)
Core\CSharp\System\Windows\Media\Generated\Int32Collection.cs (3)
458Int32Collection collection = new Int32Collection(); 553return new Int32Collection(); 753Int32Collection resource = new Int32Collection();
PresentationFramework (4)
src\Framework\System\Windows\Markup\Baml2006\Baml2006Reader.cs (1)
1454System.Windows.Media.Int32Collection ints = new System.Windows.Media.Int32Collection(capacity);
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5672bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Int32Collection(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1340case KnownElements.Int32Collection: o = new System.Windows.Media.Int32Collection(); break;
src\Framework\System\Windows\Markup\XamlInt32CollectionSerializer.cs (1)
292theCollection = new Int32Collection( count );
51 references to Int32Collection
PresentationCore (42)
Core\CSharp\MS\Internal\Media3D\GeneralTransform2Dto3Dto2D.cs (1)
275Int32Collection triIndices = _geometry.TriangleIndices;
Core\CSharp\System\Windows\Media\Converters\Generated\Int32CollectionValueSerializer.cs (5)
66if (!(value is Int32Collection)) 82return Int32Collection.Parse(value ); 96if (value is Int32Collection) 98Int32Collection instance = (Int32Collection) value;
Core\CSharp\System\Windows\Media\Generated\Int32Collection.cs (19)
68public new Int32Collection Clone() 70return (Int32Collection)base.Clone(); 77public new Int32Collection CloneCurrentValue() 79return (Int32Collection)base.CloneCurrentValue(); 452internal static Int32Collection Empty 458Int32Collection collection = new Int32Collection(); 530private static Int32Collection s_empty; 560Int32Collection sourceInt32Collection = (Int32Collection) source; 579Int32Collection sourceInt32Collection = (Int32Collection) source; 598Int32Collection sourceInt32Collection = (Int32Collection) source; 617Int32Collection sourceInt32Collection = (Int32Collection) source; 748public static Int32Collection Parse(string source) 753Int32Collection resource = new Int32Collection(); 806internal Enumerator(Int32Collection list) 917private Int32Collection _list;
Core\CSharp\System\Windows\Media\Generated\Int32CollectionConverter.cs (4)
110return Int32Collection.Parse(source); 132if (destinationType != null && value is Int32Collection) 134Int32Collection instance = (Int32Collection)value;
Core\CSharp\System\Windows\Media3D\GeneralTransform2DTo3D.cs (1)
195private Int32Collection _triIndices;
Core\CSharp\System\Windows\Media3D\Generated\MeshGeometry3D.cs (7)
182public Int32Collection TriangleIndices 186return (Int32Collection) GetValue(TriangleIndicesProperty); 244Int32Collection vTriangleIndices = TriangleIndices; 438internal static Int32Collection s_TriangleIndices = Int32Collection.Empty; 506typeof(Int32Collection), 508new FreezableDefaultValueFactory(Int32Collection.Empty),
Core\CSharp\System\Windows\Media3D\MeshGeometry3D.cs (1)
189Int32Collection indices = TriangleIndices;
Core\CSharp\System\Windows\Media3D\Viewport2DVisual3D.cs (4)
67Int32Collection triIndices) 654internal Int32Collection InternalTriangleIndicesCache 668_triangleIndicesCache = (Int32Collection)_triangleIndicesCache.GetCurrentValueAsFrozen(); 957private Int32Collection _triangleIndicesCache = null;
PresentationFramework (9)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
405case 313: t = () => typeof(Int32Collection); break;
src\Framework\System\Windows\Markup\Baml2006\Baml2006Reader.cs (2)
1443private System.Windows.Media.Int32Collection GetInt32Collection() 1454System.Windows.Media.Int32Collection ints = new System.Windows.Media.Int32Collection(capacity);
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5670typeof(System.Windows.Media.Int32Collection),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5857case KnownElements.Int32Collection: t = typeof(System.Windows.Media.Int32Collection); break;
src\Framework\System\Windows\Markup\XamlInt32CollectionSerializer.cs (4)
98Int32Collection ints = Int32Collection.Parse( stringValue ); 277private static Int32Collection DeserializeFrom( BinaryReader reader ) 279Int32Collection theCollection;