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