14 references to Length
PresentationFramework (14)
MS\Internal\Data\PropertyPathWorker.cs (2)
50
_arySVS = new SourceValueState[path.
Length
];
67
internal int Length { get { return _parent.
Length
; } }
System\Windows\Media\Animation\Storyboard.cs (5)
463
if( currentPropertyPath.
Length
< 1 )
470
if( currentPropertyPath.
Length
== 1 )
684
for( int i=0; i < path.
Length
; i++ )
739
if( i == path.
Length
-1 )
811
Debug.Assert(path.
Length
> 1, "This method shouldn't even be called for a simple property path.");
System\Windows\PropertyPath.cs (7)
164
internal object LastItem { get { return GetItem(
Length
- 1); } }
165
internal object LastAccessor { get { return GetAccessor(
Length
- 1); } }
166
internal object[] LastIndexerArguments { get { return GetIndexerArguments(
Length
- 1); } }
169
internal bool StartsWithStaticProperty { get { return
Length
> 0 && IsStaticProperty(_earlyBoundPathParts[0]); } }
275
for (int k=
Length
-1; k>=0; --k)
518
_earlyBoundPathParts = new object[
Length
];
520
for (int level=
Length
-1; level>=0; --level)