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
- Transform.cs
- DataListItem.cs
- DockProviderWrapper.cs
- UnicastIPAddressInformationCollection.cs
- DiagnosticTrace.cs
- Geometry3D.cs
- TimeSpanMinutesConverter.cs
- DiscoveryClientDocuments.cs
- SplitterPanelDesigner.cs
- SessionStateUtil.cs
- SoapAttributeAttribute.cs
- QilReference.cs
- HtmlWindowCollection.cs
- CodeTypeReferenceSerializer.cs
- HwndKeyboardInputProvider.cs
- SecurityKeyType.cs
- FormsAuthentication.cs
- PrimitiveType.cs
- CompilerGeneratedAttribute.cs
- ScriptHandlerFactory.cs
- QilTernary.cs
- NetworkInterface.cs
- DocumentViewerBase.cs
- EnumBuilder.cs
- UInt32Converter.cs
- rsa.cs
- StylusPointPropertyInfoDefaults.cs
- DataList.cs
- PnrpPeerResolverElement.cs
- Version.cs
- ReadOnlyCollectionBase.cs
- RuntimeDelegateArgument.cs
- relpropertyhelper.cs
- ObsoleteAttribute.cs
- Crypto.cs
- DefaultValueTypeConverter.cs
- EtwTrace.cs
- TableLayoutCellPaintEventArgs.cs
- LineVisual.cs
- ItemCheckEvent.cs
- HighContrastHelper.cs
- X509Utils.cs
- ClientSponsor.cs
- ArrayList.cs
- ConfigXmlElement.cs
- PageWrapper.cs
- TdsParserHelperClasses.cs
- CodeTypeParameterCollection.cs
- AccessDataSource.cs
- OperationSelectorBehavior.cs
- ScrollViewer.cs
- CapabilitiesState.cs
- OdbcFactory.cs
- DataGridViewCellStyleConverter.cs
- sqlstateclientmanager.cs
- Font.cs
- Typography.cs
- ActionFrame.cs
- WS2007FederationHttpBindingElement.cs
- shaperfactory.cs
- MultipleViewPattern.cs
- DoubleLink.cs
- SqlVersion.cs
- MouseButton.cs
- SByte.cs
- ExpressionConverter.cs
- SignalGate.cs
- EndpointDiscoveryMetadata.cs
- KnownBoxes.cs
- UInt16.cs
- IconHelper.cs
- QuotedPrintableStream.cs
- UriScheme.cs
- URLIdentityPermission.cs
- OdbcUtils.cs
- OleDbInfoMessageEvent.cs
- UInt64.cs
- Keywords.cs
- DNS.cs
- EqualityComparer.cs
- LockCookie.cs
- HttpResponse.cs
- ControlType.cs
- ObjectDataSourceFilteringEventArgs.cs
- EntityObject.cs
- BasicExpressionVisitor.cs
- ReaderWriterLockWrapper.cs
- CollectionViewGroupRoot.cs
- ScriptManagerProxy.cs
- LinkButton.cs
- OdbcHandle.cs
- ClientUtils.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- WebPageTraceListener.cs
- ContainerUtilities.cs
- SqlCacheDependencyDatabaseCollection.cs
- PassportAuthentication.cs
- EmissiveMaterial.cs
- hresults.cs
- InvokeGenerator.cs