Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntityDesign / Design / System / Data / EntityModel / EdmToObjectNamespaceMap.cs / 1305376 / EdmToObjectNamespaceMap.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.Entity.Design.Common; namespace System.Data.Entity.Design { ////// The class to hold the map entries for the mapping between Edm Namespace and the Object Namespace /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Edm")] public class EdmToObjectNamespaceMap { private Dictionary_map = new Dictionary (); /// /// this is just to keep this class from being creatable outside of this assembly /// internal EdmToObjectNamespaceMap() { } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "edm")] public void Add(string edmNamespace, string objectNamespace) { EDesignUtil.CheckStringArgument(edmNamespace, "edmNamespace"); EDesignUtil.CheckArgumentNull(objectNamespace, "objectNamespace"); _map.Add(edmNamespace, objectNamespace); } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "edm")] public bool Contains(string edmNamespace) { return _map.ContainsKey(edmNamespace); } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Edm")] public ICollectionEdmNamespaces { get { return _map.Keys; } } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "edm")] public bool Remove(string edmNamespace) { return _map.Remove(edmNamespace); } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "edm")] public bool TryGetObjectNamespace(string edmNamespace, out string objectNamespace) { return _map.TryGetValue(edmNamespace, out objectNamespace); } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "edm")] public string this[string edmNamespace] { get { return _map[edmNamespace]; } set { _map[edmNamespace] = value; } } public void Clear() { _map.Clear(); } public int Count { get { return _map.Count; } } internal Dictionary AsDictionary() { return _map; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- invalidudtexception.cs
- TextChange.cs
- IdentityReference.cs
- ToolStripPanelCell.cs
- SwitchAttribute.cs
- UrlMappingsSection.cs
- EventLogPermission.cs
- Block.cs
- ConfigXmlDocument.cs
- ShaderEffect.cs
- RuntimeCompatibilityAttribute.cs
- SoapObjectReader.cs
- CatchBlock.cs
- ErrorTableItemStyle.cs
- DynamicResourceExtensionConverter.cs
- WebPartConnectionCollection.cs
- SiteMapNodeCollection.cs
- FixedTextView.cs
- StorageSetMapping.cs
- AxWrapperGen.cs
- ReturnEventArgs.cs
- GridItemPatternIdentifiers.cs
- DesignerRegionMouseEventArgs.cs
- WebPartsPersonalization.cs
- Frame.cs
- NamespaceMapping.cs
- _ContextAwareResult.cs
- panel.cs
- HyperLink.cs
- VariableQuery.cs
- CompositeFontParser.cs
- NamespaceList.cs
- EntitySetDataBindingList.cs
- GifBitmapDecoder.cs
- MenuItemCollectionEditor.cs
- SchemaElementDecl.cs
- RepeaterItemEventArgs.cs
- SqlRowUpdatedEvent.cs
- ViewLoader.cs
- SafeEventLogWriteHandle.cs
- XmlDomTextWriter.cs
- DesignerTransaction.cs
- XmlSubtreeReader.cs
- QueryExpr.cs
- HtmlString.cs
- CompiledAction.cs
- HttpTransportBindingElement.cs
- ContentDesigner.cs
- ClockController.cs
- ExceptionValidationRule.cs
- SynthesizerStateChangedEventArgs.cs
- IdentitySection.cs
- ProvideValueServiceProvider.cs
- Misc.cs
- EntityTransaction.cs
- DuplicateDetector.cs
- CaseStatementSlot.cs
- CommonXSendMessage.cs
- DES.cs
- CompareInfo.cs
- QueryOutputWriter.cs
- IsolatedStorageException.cs
- Permission.cs
- QueryOptionExpression.cs
- BitVec.cs
- SafeFileMappingHandle.cs
- OuterGlowBitmapEffect.cs
- BCryptHashAlgorithm.cs
- IntegerCollectionEditor.cs
- DataTableExtensions.cs
- InstalledFontCollection.cs
- QueryActivatableWorkflowsCommand.cs
- ContextMarshalException.cs
- AssertFilter.cs
- HttpWriter.cs
- SdlChannelSink.cs
- SourceSwitch.cs
- RepeaterDesigner.cs
- DrawingContext.cs
- BindMarkupExtensionSerializer.cs
- SpecialFolderEnumConverter.cs
- SqlLiftIndependentRowExpressions.cs
- IssuedTokenClientBehaviorsElementCollection.cs
- Configuration.cs
- XsdDuration.cs
- ParameterCollection.cs
- DefaultBinder.cs
- GuidelineSet.cs
- HeaderedContentControl.cs
- NavigationFailedEventArgs.cs
- GenericRootAutomationPeer.cs
- MbpInfo.cs
- RawAppCommandInputReport.cs
- SoapWriter.cs
- NullableFloatAverageAggregationOperator.cs
- GridViewRowPresenter.cs
- QueryExpression.cs
- VirtualPath.cs
- DataGridSortCommandEventArgs.cs
- Closure.cs