45 implementations of Keys
mscorlib (4)
system\Collections\Concurrent\ConcurrentDictionary.cs (1)
1350public ICollection<TKey> Keys
system\collections\generic\dictionary.cs (1)
143ICollection<TKey> IDictionary<TKey, TValue>.Keys {
system\collections\objectmodel\readonlydictionary.cs (1)
75ICollection<TKey> IDictionary<TKey, TValue>.Keys {
System\Diagnostics\Eventing\TraceLogging\EventPayload.cs (1)
31public ICollection<string> Keys { get { return m_names; } }
PresentationCore (4)
Core\CSharp\MS\Internal\FontCache\FontFaceLayoutInfo.cs (1)
698public ICollection<int> Keys
Core\CSharp\System\Windows\Media\CharacterMetricsDictionary.cs (1)
276public ICollection<int> Keys
Core\CSharp\System\Windows\Media\CultureSpecificStringDictionary.cs (1)
242public ICollection<XmlLanguage> Keys
Core\CSharp\System\Windows\Media\GlyphTypeface.cs (1)
2133public ICollection<ushort> Keys
PresentationFramework (2)
src\Framework\MS\Internal\Annotations\ObservableDictionary.cs (1)
296public ICollection<string> Keys
src\Framework\MS\Internal\WeakDictionary.cs (1)
204public ICollection<TKey> Keys
System (3)
compmod\system\collections\generic\sorteddictionary.cs (1)
131ICollection<TKey> IDictionary<TKey, TValue>.Keys {
compmod\system\collections\generic\sortedlist.cs (1)
287ICollection<TKey> IDictionary<TKey,TValue>.Keys {
compmod\system\collections\specialized\stringdictionary.cs (1)
259public ICollection<string> Keys {
System.Activities (2)
System\Activities\Hosting\SymbolResolver.cs (1)
33public ICollection<string> Keys
System\Activities\HybridDictionary.cs (1)
62public ICollection<TKey> Keys
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Base\Interaction\Model\ModelItemDictionary.cs (1)
99public abstract ICollection<ModelItem> Keys { get; }
System.Activities.Presentation\System\Activities\Presentation\Model\WeakKeyDictionary.cs (1)
39public ICollection<K> Keys
System.AddIn (1)
System\Addin\Hosting\ReadOnlyDictionary.cs (1)
64public ICollection<TKey> Keys
System.Core (1)
Microsoft\Scripting\Actions\ExpandoObject.cs (1)
540ICollection<string> IDictionary<string, object>.Keys {
System.Data (2)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Interaction\Model\ModelItemDictionary.cs (1)
99public abstract ICollection<ModelItem> Keys { get; }
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\WeakKeyDictionary.cs (1)
39public ICollection<K> Keys
System.Runtime.DurableInstancing (1)
System\Runtime\PersistencePipeline.cs (1)
252public ICollection<XName> Keys
System.ServiceModel (12)
System\ServiceModel\Channels\ContextDictionary.cs (1)
72public ICollection<string> Keys
System\ServiceModel\Channels\MessageProperties.cs (1)
160public ICollection<string> Keys
System\ServiceModel\Dispatcher\ActionMessageFilterTable.cs (1)
89public ICollection<MessageFilter> Keys
System\ServiceModel\Dispatcher\AndMessageFilterTable.cs (1)
61public ICollection<MessageFilter> Keys
System\ServiceModel\Dispatcher\EndpointAddressMessageFilterTable.cs (1)
115public ICollection<MessageFilter> Keys
System\ServiceModel\Dispatcher\MessageFilter.cs (1)
241public ICollection<MessageFilter> Keys
System\ServiceModel\Dispatcher\MessageFilterTable.cs (1)
122public ICollection<MessageFilter> Keys
System\ServiceModel\Dispatcher\MessageQueryTable.cs (1)
36public ICollection<MessageQuery> Keys
System\ServiceModel\Dispatcher\ThreadSafeMessageFilterTable.cs (1)
164public ICollection<MessageFilter> Keys
System\ServiceModel\Dispatcher\XPathMessageFilterTable.cs (1)
118public ICollection<MessageFilter> Keys
System\ServiceModel\Security\SecuritySessionFilter.cs (1)
159public ICollection<MessageFilter> Keys
System\UriTemplate.cs (1)
1051public ICollection<string> Keys
System.ServiceModel.Internals (3)
System\Runtime\Collections\NullableKeyDictionary.cs (1)
35public ICollection<TKey> Keys
System\Runtime\Collections\OrderedDictionary.cs (1)
81public ICollection<TKey> Keys
System\Runtime\ReadOnlyDictionaryInternal.cs (1)
32public ICollection<TKey> Keys
System.ServiceModel.Routing (1)
System\ServiceModel\Dispatcher\StrictAndMessageFilter.cs (1)
72public ICollection<MessageFilter> Keys
System.Web (4)
ModelBinding\ModelBinderDictionary.cs (1)
45public ICollection<Type> Keys {
ModelBinding\ModelStateDictionary.cs (1)
43public ICollection<string> Keys {
Routing\RouteValueDictionary.cs (1)
101ICollection<string> IDictionary<string, object>.Keys {
UI\WebControls\MethodParametersDictionary.cs (1)
101public ICollection<string> Keys {
System.Web.Extensions (1)
Util\OrderedDictionary.cs (1)
39public ICollection<TKey> Keys {
System.WorkflowServices (1)
System\ServiceModel\SerializableReadOnlyDictionary.cs (1)
62public ICollection<K> Keys
WindowsBase (1)
Base\System\Windows\NameScope.cs (1)
365public ICollection<string> Keys
60 references to Keys
mscorlib (2)
system\collections\objectmodel\readonlydictionary.cs (1)
53m_keys = new KeyCollection(m_dictionary.Keys);
system\security\claims\Claim.cs (1)
597foreach (var key in Properties.Keys)
PresentationCore (1)
Core\CSharp\System\Windows\Media\CultureSpecificStringDictionary.cs (1)
244get { return _innerDictionary.Keys; }
PresentationFramework (2)
src\Framework\System\Windows\Annotations\Storage\XmlStreamStore.cs (2)
811foreach (Uri knownNamespace in knownNamespaces.Keys) 866foreach (Uri knownNamespace in knownNamespaces.Keys)
System (1)
compmod\system\collections\generic\sortedlist.cs (1)
168dictionary.Keys.CopyTo(keys, 0);
System.Activities (5)
System\Activities\DynamicUpdate\DynamicUpdateMapBuilder.cs (1)
1501providedValues.Keys.Any(k => generatedValues.ContainsKey(k));
System\Activities\DynamicUpdate\DynamicUpdateServices.cs (2)
121foreach (object matchObject in mapItems.Keys) 163foreach (object matchObject in mapItems.Keys)
System\Activities\HybridDictionary.cs (1)
72return new ReadOnlyCollection<TKey>(new List<TKey>(this.dictionary.Keys));
System\Activities\Validation\ActivityValidationServices.cs (1)
125foreach (string key in inputs.Keys)
System.Activities.Core.Presentation (2)
System\Activities\Core\Presentation\GenericFlowSwitchHelper.cs (2)
73foreach (T key in currentFlowSwitch.Cases.Keys) 124foreach (T key in currentFlowSwitch.Cases.Keys)
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\View\ImportDesigner.xaml.cs (1)
196this.inputComboBox.ItemsSource = this.availableNamespaces.Keys;
System.Activities.Presentation\System\Activities\Presentation\View\ParserContext.cs (1)
165foreach (var nameSpace in this.namespaceLookup.Keys)
System.Activities.Presentation\System\Activities\Presentation\Xaml\ObjectToSourceLocationMapping.cs (1)
190foreach (SourceLocation srcLocation in mapping.Keys)
System.AddIn (1)
System\Addin\Hosting\ReadOnlyDictionary.cs (1)
67return m_dictionary.Keys;
System.Data (4)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ImportDesigner.xaml.cs (1)
196this.inputComboBox.ItemsSource = this.availableNamespaces.Keys;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ParserContext.cs (1)
165foreach (var nameSpace in this.namespaceLookup.Keys)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Xaml\ObjectToSourceLocationMapping.cs (1)
190foreach (SourceLocation srcLocation in mapping.Keys)
fx\src\data\System\Data\SqlClient\SqlConnection.cs (1)
171foreach (string key in customProviders.Keys)
System.ServiceModel (11)
System\ServiceModel\Channels\ContextDictionary.cs (1)
74get { return this.dictionaryStore.Keys; }
System\ServiceModel\Channels\SecurityBindingElement.cs (2)
1850foreach (string requestAction in this.OperationSupportingTokenParameters.Keys) 1862foreach (string requestAction in this.OptionalOperationSupportingTokenParameters.Keys)
System\ServiceModel\Configuration\UnrecognizedPolicyAssertionElement.cs (1)
75foreach (OperationDescription operation in this.operationAssertions.Keys)
System\ServiceModel\Security\SecurityProtocol.cs (2)
382foreach (string action in this.factory.SecurityBindingElement.OperationSupportingTokenParameters.Keys) 388foreach (string action in this.factory.SecurityBindingElement.OptionalOperationSupportingTokenParameters.Keys)
System\ServiceModel\Security\SecurityProtocolFactory.cs (2)
1001foreach (string action in this.securityBindingElement.OperationSupportingTokenParameters.Keys) 1007foreach (string action in this.securityBindingElement.OptionalOperationSupportingTokenParameters.Keys)
System\ServiceModel\Security\Tokens\ServiceModelSecurityTokenRequirement.cs (1)
237foreach (string propertyName in this.Properties.Keys)
System\UriTemplate.cs (2)
711foreach (string key in extraQueryParameters.Keys) 1311foreach (string key in parameters.Keys)
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\MetabaseSettings.cs (1)
561foreach (string scheme in this.Bindings.Keys)
System.ServiceModel.Activities (2)
System\ServiceModel\Activities\WorkflowDefinitionProvider.cs (1)
66foreach (WorkflowIdentityKey identityKey in this.definitionCollection.Keys)
System\ServiceModel\Activities\WorkflowServiceHost.cs (1)
408foreach (XName contractName in this.inferredContracts.Keys)
System.ServiceModel.Internals (6)
System\Runtime\Collections\NullableKeyDictionary.cs (5)
234int count = this.nullKeyDictionary.innerDictionary.Keys.Count; 260return item == null ? this.nullKeyDictionary.isNullKeyPresent : this.nullKeyDictionary.innerDictionary.Keys.Contains(item); 265this.nullKeyDictionary.innerDictionary.Keys.CopyTo(array, arrayIndex); 268array[arrayIndex + this.nullKeyDictionary.innerDictionary.Keys.Count] = default(TypeKey); 279foreach (TypeKey item in this.nullKeyDictionary.innerDictionary.Keys)
System\Runtime\ReadOnlyDictionaryInternal.cs (1)
34get { return this.dictionary.Keys; }
System.ServiceModel.Web (2)
System\ServiceModel\Dispatcher\DemultiplexingClientMessageFormatter.cs (1)
27foreach (WebContentFormat key in formatters.Keys)
System\ServiceModel\Dispatcher\DemultiplexingDispatchMessageFormatter.cs (1)
28foreach (WebContentFormat key in formatters.Keys)
System.Web (2)
Compilation\CompilationUtil.cs (1)
266foreach (string key in providerOptions.Keys) {
ModelBinding\DictionaryValueProvider`1.cs (1)
16_prefixes = new PrefixContainer(dictionary.Keys);
System.Web.DynamicData (2)
DynamicData\QueryStringHandler.cs (1)
45foreach (String s in parameters.Keys) {
DynamicData\Util\DictionaryCustomTypeDescriptor.cs (1)
28var dictionaryProps = _values.Keys.Select(propName => new DictionaryPropertyDescriptor(propName));
System.Web.Extensions (1)
Script\Serialization\ObjectConverter.cs (1)
182List<String> memberNames = new List<String>(dictionary.Keys);
System.Workflow.ComponentModel (6)
AuthoringOM\Activity.cs (2)
947DependencyProperty[] propertyClone = new DependencyProperty[this.DependencyPropertyValues.Keys.Count]; 948this.DependencyPropertyValues.Keys.CopyTo(propertyClone, 0);
AuthoringOM\DependencyObject.cs (1)
604return new List<DependencyProperty>(this.metaProperties.Keys).AsReadOnly();
AuthoringOM\Serializer\DependencyObjectCodeDomSerializer.cs (1)
70foreach (DependencyProperty dp in dependencyObject.DependencyPropertyValues.Keys)
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (2)
730foreach (DependencyProperty dependencyProperty in dependencyProperties.Keys) 1522foreach (DependencyProperty dependencyProperty in dependencyObject.DependencyPropertyValues.Keys)
System.Workflow.Runtime (1)
WorkflowExecutor.cs (1)
365foreach (string arg in namedInArguments.Keys)
System.WorkflowServices (5)
System\ServiceModel\SerializableReadOnlyDictionary.cs (1)
64get { return this.dictionary.Keys; }
System\Workflow\Activities\ReceiveActivity.cs (4)
525!(requestContext.ContextProperties.Keys.Contains(WellKnownContextProperties.InstanceId))) 951!(requestContext.ContextProperties.Keys.Contains(WellKnownContextProperties.InstanceId))) 1463this.notNullableParameters.Keys.Contains(parameterInfo.Key)) 1678!(requestContext.ContextProperties.Keys.Contains(WellKnownContextProperties.InstanceId)))