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