34 references to Values
PresentationCore (1)
Core\CSharp\System\Windows\Media\Animation\AnimationStorage.cs (1)
949
IList<AnimationLayer> layers = storage._propertyTriggerLayers.
Values
;
PresentationFramework (6)
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1483
OnTextChanged(new TextChangedEventArgs(TextChangedEvent, undoAction, new ReadOnlyCollection<TextChange>(e.Changes.
Values
)));
src\Framework\System\Windows\Documents\TextContainerChangedEventArgs.cs (5)
217
change = Changes.
Values
[keyIndex];
291
TextChange prevChange = Changes.
Values
[curIndex];
317
while (curIndex < Changes.Count && Changes.
Values
[curIndex].Offset <= offset + length)
322
MergeTextChangeRight(Changes.
Values
[curIndex], change, offset, length);
339
TextChange curChange = Changes.
Values
[curIndex];
System.IdentityModel (2)
System\IdentityModel\Metadata\MetadataSerializer.cs (2)
2951
foreach (IndexedProtocolEndpoint ep in serviceProviderSingleSignOnDescriptor.AssertionConsumerServices.
Values
)
2994
foreach (IndexedProtocolEndpoint ep in singleSignOnDescriptor.ArtifactResolutionServices.
Values
)
System.ServiceModel (17)
System\ServiceModel\Channels\CorrelationKey.cs (2)
127
key.Append(sortedKeyData.
Values
[i]);
131
checksum.Append(sortedKeyData.
Values
[i].Length.ToString(NumberFormatInfo.InvariantInfo));
System\UriTemplateTrieNode.cs (15)
684
for (int i = 0; i < this.items.
Values
.Count; i++)
686
results.Add(new List<T>(this.items.
Values
[i].Count));
688
for (int j = 0; j < this.items.
Values
[i].Count; j++)
690
results[i].Add(this.items.
Values
[i][j].Value);
693
Fx.Assert(results[i].Count == this.items.
Values
[i].Count, "We were supposed to add an item for each value in the collection");
695
Fx.Assert(results.Count == this.items.
Values
.Count, "We were supposed to add a sub-list for each values collection");
711
Collection<CollectionItem> subItems = this.items.
Values
[index];
723
Collection<CollectionItem> subItems = this.items.
Values
[index];
736
for (int i = 0; i < this.items.
Values
.Count; i++)
739
for (int j = 0; j < this.items.
Values
[i].Count; j++)
741
if (this.items.
Values
[i][j].Segment.IsMatch(wireData))
747
sameOrderResults.Add(this.items.
Values
[i][j].Value);
760
if (this.items.
Values
.Count > 0)
762
Fx.Assert(this.items.
Values
[0].Count > 0, "We are not adding a sub-list unless there is at list one item");
763
return this.items.
Values
[0][0].Value;
System.Workflow.Runtime (2)
WorkBatch.cs (2)
251
List<object> values = new List<object>(workItem.Value.
Values
);
262
List<object> values = new List<object>(workItem.Value.
Values
);
System.WorkflowServices (1)
System\Workflow\Activities\ContractMethodInfo.cs (1)
65
foreach (ContractMethodParameterInfo paramInfo in localParameters.
Values
)
WindowsBase (5)
Base\MS\Internal\PriorityQueue.cs (4)
64
PriorityChain<T> chain = _priorityChains.
Values
[count - 1];
89
PriorityChain<T> chain = _priorityChains.
Values
[count - 1];
142
chain = _priorityChains.
Values
[0];
146
chain = _priorityChains.
Values
[count - 1];
Base\System\IO\Packaging\PackagePartCollection.cs (1)
82
return _partList.
Values
.GetEnumerator();