14 references to Length
PresentationFramework (14)
MS\Internal\Data\PropertyPathWorker.cs (2)
43
_arySVS = new SourceValueState[path.
Length
];
60
internal int Length { get { return _parent.
Length
; } }
System\Windows\Media\Animation\Storyboard.cs (5)
461
if( currentPropertyPath.
Length
< 1 )
468
if( currentPropertyPath.
Length
== 1 )
682
for( int i=0; i < path.
Length
; i++ )
737
if( i == path.
Length
-1 )
809
Debug.Assert(path.
Length
> 1, "This method shouldn't even be called for a simple property path.");
System\Windows\PropertyPath.cs (7)
160
internal object LastItem { get { return GetItem(
Length
- 1); } }
161
internal object LastAccessor { get { return GetAccessor(
Length
- 1); } }
162
internal object[] LastIndexerArguments { get { return GetIndexerArguments(
Length
- 1); } }
165
internal bool StartsWithStaticProperty { get { return
Length
> 0 && IsStaticProperty(_earlyBoundPathParts[0]); } }
271
for (int k=
Length
-1; k>=0; --k)
514
_earlyBoundPathParts = new object[
Length
];
516
for (int level=
Length
-1; level>=0; --level)