14 references to Length
PresentationFramework (14)
MS\Internal\Data\PropertyPathWorker.cs (2)
44_arySVS = new SourceValueState[path.Length]; 61internal int Length { get { return _parent.Length; } }
System\Windows\Media\Animation\Storyboard.cs (5)
460if( currentPropertyPath.Length < 1 ) 467if( currentPropertyPath.Length == 1 ) 681for( int i=0; i < path.Length; i++ ) 736if( i == path.Length-1 ) 808Debug.Assert(path.Length > 1, "This method shouldn't even be called for a simple property path.");
System\Windows\PropertyPath.cs (7)
161internal object LastItem { get { return GetItem(Length - 1); } } 162internal object LastAccessor { get { return GetAccessor(Length - 1); } } 163internal object[] LastIndexerArguments { get { return GetIndexerArguments(Length - 1); } } 166internal bool StartsWithStaticProperty { get { return Length > 0 && IsStaticProperty(_earlyBoundPathParts[0]); } } 272for (int k=Length-1; k>=0; --k) 515_earlyBoundPathParts = new object[Length]; 517for (int level=Length-1; level>=0; --level)