System.Activities.Presentation\System\Activities\Presentation\Debugger\DebuggerService.cs (11)
309if (this.breakpoints.TryGetValue(modelItem, out breakpointType))
326if (this.instanceToSourceLocationMapping.TryGetValue(unresolvedObject, out sourceLocation))
332if (this.sourceLocationToModelItem.TryGetValue(sourceLocation, out modelItem))
363if (this.unmappedBreakpoints.TryGetValue(sourceLocation, out breakpointType))
392if (this.breakpoints.TryGetValue(modelItem, out actualBreakpointType))
402if (this.breakpoints.TryGetValue(modelItem, out oldBreakpointType))
574if (this.unmappedBreakpoints.TryGetValue(sourceLocation, out oldBreakpointType))
703if (this.transientBreakpoints.TryGetValue(modelItem, out breakpointType))
790if (this.instanceToSourceLocationMapping.TryGetValue(instance, out sourceLocation))
821this.modelItemToSourceLocation.TryGetValue(modelItem, out sourceLocation);
836if (!this.sourceLocationToModelItem.TryGetValue(sourceLocation, out modelItem))
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Debugger\DebuggerService.cs (11)
309if (this.breakpoints.TryGetValue(modelItem, out breakpointType))
326if (this.instanceToSourceLocationMapping.TryGetValue(unresolvedObject, out sourceLocation))
332if (this.sourceLocationToModelItem.TryGetValue(sourceLocation, out modelItem))
363if (this.unmappedBreakpoints.TryGetValue(sourceLocation, out breakpointType))
392if (this.breakpoints.TryGetValue(modelItem, out actualBreakpointType))
402if (this.breakpoints.TryGetValue(modelItem, out oldBreakpointType))
574if (this.unmappedBreakpoints.TryGetValue(sourceLocation, out oldBreakpointType))
703if (this.transientBreakpoints.TryGetValue(modelItem, out breakpointType))
790if (this.instanceToSourceLocationMapping.TryGetValue(instance, out sourceLocation))
821this.modelItemToSourceLocation.TryGetValue(modelItem, out sourceLocation);
836if (!this.sourceLocationToModelItem.TryGetValue(sourceLocation, out modelItem))
System\Data\Objects\EntityEntry.cs (10)
1773if (!this._originalComplexObjects.TryGetValue(userObject, out ordinal2complexObject))
2024if (this._originalComplexObjects.TryGetValue(parentObject, out ordinal2complexObject))
2026ordinal2complexObject.TryGetValue(parentOrdinal, out oldComplexObject);
2042if (this._originalComplexObjects.TryGetValue(userObject, out ordinal2complexObject))
2047ordinal2complexObject.TryGetValue(ordinal, out oldValue);
2052if (oldValue != null && this._originalComplexObjects.TryGetValue(oldValue, out ordinal2complexObject))
2232if (!this.ObjectStateManager.TransactionManager.WrappedEntities.TryGetValue(o, out relatedWrapper))
2373if (!relationships.TryGetValue(relatedEnd.WrappedOwner, out alreadyDetectedRelationshipsFrom))
2380if (!alreadyDetectedRelationshipsFrom.TryGetValue(relatedEnd, out objectsInRelatedEnd))
3868if (!relatedEntities.TryGetValue(reference, out entityKeys))
System\Data\Objects\ObjectStateManager.cs (45)
484if (!_danglingForeignKeys.TryGetValue(foreignKey, out danglingEntries))
534if (_danglingForeignKeys.TryGetValue(foreignKey, out danglingEntries))
560if (_danglingForeignKeys.TryGetValue(foreignKey, out foundEntries))
764if (!this.TransactionManager.PromotedRelationships.TryGetValue(relatedEnd, out entities))
1619bool result = (((null != _unchangedRelationshipStore) && _unchangedRelationshipStore.TryGetValue(relationshipWrapper, out entry)) ||
1620((null != _deletedRelationshipStore) && _deletedRelationshipStore.TryGetValue(relationshipWrapper, out entry)) ||
1621((null != _addedRelationshipStore) && _addedRelationshipStore.TryGetValue(relationshipWrapper, out entry)));
1693result = _addedEntityStore.TryGetValue(entry.EntityKey, out entrya);
1697result |= _modifiedEntityStore.TryGetValue(entry.EntityKey, out entrya);
1701result |= _deletedEntityStore.TryGetValue(entry.EntityKey, out entrya);
1705result |= _unchangedEntityStore.TryGetValue(entry.EntityKey, out entrya);
1724if (_keylessEntityStore.TryGetValue(entry.Entity, out keylessEntry))
1755if (_keylessEntityStore.TryGetValue(entity, out entryRef))
2562result = ((null != _addedEntityStore) && _addedEntityStore.TryGetValue(key, out entry));
2566result = (((null != _unchangedEntityStore) && _unchangedEntityStore.TryGetValue(key, out entry)) ||
2567((null != _modifiedEntityStore) && _modifiedEntityStore.TryGetValue(key, out entry)) ||
2568((null != _deletedEntityStore) && _deletedEntityStore.TryGetValue(key, out entry)));
2979if (!_metadataMapping.TryGetValue(new EntitySetQualifiedType(entityType, entitySet), out typeMetadata))
3001if (!_metadataStore.TryGetValue(edmType, out typeMetadata))
3024if (!_metadataStore.TryGetValue(edmType, out typeMetadata))
3123tm.AddedRelationshipsByGraph.TryGetValue(entry.WrappedEntity, out addedRelationshipsByGraph);
3125tm.AddedRelationshipsByForeignKey.TryGetValue(entry.WrappedEntity, out addedRelationshipsByForeignKey);
3207addedRelationshipsByForeignKey.TryGetValue(pair.Key, out newFks);
3213if (tm.AddedRelationshipsByPrincipalKey.TryGetValue(entry.WrappedEntity, out addedRelationshipsByPrincipalKey))
3215addedRelationshipsByPrincipalKey.TryGetValue(pair.Key, out newFks);
3237if (tm.DeletedRelationshipsByForeignKey.TryGetValue(entry.WrappedEntity, out deletedRelationshipsByForeignKey))
3240if (deletedRelationshipsByForeignKey.TryGetValue(pair.Key, out removedKeys))
3351tm.AddedRelationshipsByForeignKey.TryGetValue(entry.WrappedEntity, out addedRelationshipsByForeignKey))
3353addedRelationshipsByForeignKey.TryGetValue(relatedEnd, out entityKeysOfAddedObjects);
3361if (tm.AddedRelationshipsByGraph.TryGetValue(entry.WrappedEntity, out addedRelationshipsByGraph))
3363addedRelationshipsByGraph.TryGetValue(relatedEnd, out entitiesToAdd);
3477tm.DeletedRelationshipsByForeignKey.TryGetValue(entry.WrappedEntity, out deletedRelationshipsByForeignKey))
3479deletedRelationshipsByForeignKey.TryGetValue(relatedEnd as EntityReference, out entityKeysOfDeletedObjects);
3486if (tm.DeletedRelationshipsByGraph.TryGetValue(entry.WrappedEntity, out deletedRelationshipsByGraph))
3488deletedRelationshipsByGraph.TryGetValue(relatedEnd, out entitiesToDelete);
3615if (TransactionManager.DeletedRelationshipsByForeignKey.TryGetValue(relatedEntity, out deletedRelationshipsByForeignKey) &&
3616deletedRelationshipsByForeignKey.TryGetValue(otherEnd, out entityKeysOfDeletedObjects) &&
3618TransactionManager.DeletedRelationshipsByGraph.TryGetValue(relatedEntity, out deletedRelationshipsByGraph) &&
3619deletedRelationshipsByGraph.TryGetValue(otherEnd, out entitiesToDelete))
3641TransactionManager.AddedRelationshipsByGraph.TryGetValue(wrappedOwner, out addedRelationshipsByGraph) &&
3642addedRelationshipsByGraph.TryGetValue(reference, out entitiesToAdd) &&
3666if (tm.AddedRelationshipsByForeignKey.TryGetValue(wrappedEntity, out addedRelationshipsByForeignKey) &&
3667addedRelationshipsByForeignKey.TryGetValue(reference, out entityKeysOfAddedObjects) &&
3675if (tm.AddedRelationshipsByGraph.TryGetValue(wrappedEntity, out addedRelationshipsByGraph) &&
3676addedRelationshipsByGraph.TryGetValue(reference, out entitiesToAdd) &&
System\Data\Query\PlanCompiler\JoinGraph.cs (11)
761if (!m_tableVertexMap.TryGetValue(leftVar.Table, out leftTableNode))
765if (!m_tableVertexMap.TryGetValue(rightVar.Table, out rightTableNode))
1539if (m_reverseVarMap.TryGetValue(replacedVar, out oldReplacedVars))
1545if (!m_reverseVarMap.TryGetValue(replacingVar, out replacedVars))
1753if (!groupedEdges.TryGetValue(joinEdge.Right.Table.TableMetadata.Extent, out edges))
1973if (m_reverseVarMap.TryGetValue(key, out replacedVars))
2298while (m_varMap.TryGetValue(newVar1, out newVar2))
2408if (!m_varMap.TryGetValue(var, out newVar))
2421if (!m_varMap.TryGetValue(joinNode.LeftVars[i], out newLeftVar))
2425if (!m_varMap.TryGetValue(joinNode.RightVars[i], out newRightVar))
2757if (m_varToDefiningNodeMap.TryGetValue(var, out node))
System\ServiceModel\ComIntegration\ComPlusDiagnosticTraceRecords.cs (17)
295propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.Wsdl, out wsdlText);
296propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.Contract, out contract);
297propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.Address, out address);
298propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.Binding, out binding);
299propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.BindingConfiguration, out bindingConfig);
300propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.SpnIdentity, out spnIdentity);
301propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.UpnIdentity, out upnIdentity);
302propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.DnsIdentity, out dnsIdentity);
303propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.MexAddress, out mexAddress);
304propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.MexBinding, out mexBinding);
305propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.MexBindingConfiguration, out mexBindingConfiguration);
306propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.MexSpnIdentity, out mexSpnIdentity);
307propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.MexUpnIdentity, out mexUpnIdentity);
308propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.MexDnsIdentity, out mexDnsIdentity);
309propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.ContractNamespace, out contractNamespace);
310propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.BindingNamespace, out bindingNamespace);
410while (dispToOperationDescription.TryGetValue(dispIndex, out methodInfo))
System\ServiceModel\ComIntegration\MexServiceChannelBuilder.cs (15)
207propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.Contract, out contract);
208propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.ContractNamespace, out contractNamespace);
209propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.BindingNamespace, out bindingNamespace);
210propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.Binding, out binding);
211propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.MexAddress, out mexAddress);
212propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.MexBinding, out mexBindingSectionName);
213propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.MexBindingConfiguration, out mexBindingConfiguration);
214propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.Address, out address);
215propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.SpnIdentity, out spnIdentity);
216propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.UpnIdentity, out upnIdentity);
217propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.DnsIdentity, out dnsIdentity);
218propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.MexSpnIdentity, out mexSpnIdentity);
219propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.MexUpnIdentity, out mexUpnIdentity);
220propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.MexDnsIdentity, out mexDnsIdentity);
221propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.Serializer, out serializer);
System\ServiceModel\ComIntegration\WsdlServiceChannelBuilder.cs (10)
194propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.Wsdl, out wsdlText);
195propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.Contract, out portType);
196propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.Binding, out bindingName);
197propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.Address, out address);
198propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.SpnIdentity, out spnIdentity);
199propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.UpnIdentity, out upnIdentity);
200propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.DnsIdentity, out dnsIdentity);
201propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.Serializer, out serializer);
202propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.BindingNamespace, out bindingNamespace);
203propertyTable.TryGetValue(MonikerHelper.MonikerAttribute.ContractNamespace, out contractNamespace);
System\ServiceModel\Description\MessageContractExporter.cs (12)
56if (ExportedMessages.ElementTypes.TryGetValue(qname, out existingElement))
77if (!exporter.State.TryGetValue(typeof(MessageExportContext), out messageExportContext))
247if (!exporter.State.TryGetValue(typeof(XsdDataContractExporter), out dataContractExporter))
442if (ExportedMessages.TypedMessages.TryGetValue(typedMessageKey, out wsdlMessage))
448if (ExportedMessages.ParameterMessages.TryGetValue(messageKey, out wsdlMessage))
484if (ExportedMessages.TypedHeaderMessages.TryGetValue(typedMessageKey, out wsdlMessage))
690if (this.exportedMessages.WsdlHeaderMessages.TryGetValue(new MessageDescriptionDictionaryKey(this.endpointContext.Endpoint.Contract, message), out headerMessage))
727if (!ExportedMessages.WrapperNamespaces.TryGetValue(new MessageDescriptionDictionaryKey(endpointContext.ContractConversionContext.Contract, messageDescription), out ns))
1247if (!exporter.State.TryGetValue(typeof(XmlSerializerOperationBehavior.Reflector), out reflector))
1261if (!exporter.State.TryGetValue(typeof(SoapSchemaExporter), out soapExporter))
1275if (!exporter.State.TryGetValue(typeof(XmlSchemaExporter), out xmlExporter))
1289if (!exporter.State.TryGetValue(typeof(XmlSchemas), out schemas))
System\ServiceModel\Description\WsdlImporter.cs (12)
371if (!importedBindings.TryGetValue(wsdlBindingQName, out bindingEndpointContext))
380importedPortTypes.TryGetValue(wsdlBinding.Type, out contractContext);
446if (!importedPorts.TryGetValue(wsdlPort, out endpoint))
648if (this.KnownContracts.TryGetValue(contractQName, out existingContract))
652if (importedPortTypes.TryGetValue(wsdlPortTypeQName, out contractContext))
2346if (!this.embeddedPolicyDictionary.TryGetValue(wsdl, out wsdlPolicyDictionary))
2397externalPolicyDictionary.TryGetValue(policyReference, out policy);
2407if (!policySourceTable.TryGetValue(contextPolicyAssertion, out sourceWsdl))
2420externalPolicyDictionary.TryGetValue(policyReference, out policy);
2425if (!this.embeddedPolicyDictionary.TryGetValue(wsdlDocument, out wsdlPolicyDictionary))
2430wsdlPolicyDictionary.TryGetValue(policyReference, out policy);
2453if (!policySourceTable.TryGetValue(policyAssertion, out sourceWsdl))
System\ServiceModel\Dispatcher\QuerySubExprEliminator.cs (10)
304if (!this.nameLookup.TryGetValue(ns, out nextLookup))
312if (!nextLookup.TryGetValue(name, out exprs))
354if (this.nameLookup.TryGetValue(ns, out nextLookup))
356if (nextLookup.TryGetValue(name, out lst))
364if (nextLookup.TryGetValue(QueryDataModel.Wildcard, out lst))
373if (this.nameLookup.TryGetValue(QueryDataModel.Wildcard, out nextLookup))
375if (nextLookup.TryGetValue(QueryDataModel.Wildcard, out lst))
433if (this.nameLookup.TryGetValue(ns, out nextLookup))
437if (nextLookup.TryGetValue(name, out exprs))
591if (this.removalMapping.TryGetValue(item, out exprs))