Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataWeb / Design / system / Data / EntityModel / EdmToObjectNamespaceMap.cs / 1 / 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.Services.Design.Common; namespace System.Data.Services.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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.Services.Design.Common; namespace System.Data.Services.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; } } } } // 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
- TcpAppDomainProtocolHandler.cs
- TreeNodeBindingCollection.cs
- UnauthorizedAccessException.cs
- BeginEvent.cs
- FillErrorEventArgs.cs
- XmlSchemaAnyAttribute.cs
- TextureBrush.cs
- diagnosticsswitches.cs
- Crc32Helper.cs
- Column.cs
- _SpnDictionary.cs
- UIElement.cs
- HashHelper.cs
- ExpressionWriter.cs
- ContextProperty.cs
- Vector.cs
- TextBoxBase.cs
- PolicyException.cs
- TimeEnumHelper.cs
- InputScopeAttribute.cs
- InfoCardKeyedHashAlgorithm.cs
- DataGridViewAdvancedBorderStyle.cs
- DbgUtil.cs
- DesignerAttributeInfo.cs
- ConfigurationManagerInternalFactory.cs
- QilLoop.cs
- IssuerInformation.cs
- RepeaterCommandEventArgs.cs
- MimeReturn.cs
- TypeToken.cs
- TrustSection.cs
- ModelTreeEnumerator.cs
- BuildProvider.cs
- Thumb.cs
- FloatUtil.cs
- XPathScanner.cs
- TypeConverter.cs
- GridItemCollection.cs
- XmlBaseReader.cs
- AddInStore.cs
- SynchronizedInputPattern.cs
- TypeUtil.cs
- SafeNativeMethodsOther.cs
- ConnectionPointConverter.cs
- WebServiceEndpoint.cs
- InfoCardSchemas.cs
- OperationFormatUse.cs
- SqlDataSourceQueryEditor.cs
- DropDownList.cs
- SQLChars.cs
- DoubleLink.cs
- DateTimePicker.cs
- AppSettingsExpressionBuilder.cs
- StylusPointPropertyInfo.cs
- JsonWriter.cs
- ParallelRangeManager.cs
- WebPartHeaderCloseVerb.cs
- Brush.cs
- AutomationPatternInfo.cs
- CompModSwitches.cs
- InvalidateEvent.cs
- wgx_commands.cs
- DataSourceCache.cs
- DataGridColumnStyleMappingNameEditor.cs
- TaiwanLunisolarCalendar.cs
- DataRowExtensions.cs
- DataGrid.cs
- NativeMethods.cs
- OleDbConnection.cs
- GeometryGroup.cs
- BasicExpandProvider.cs
- PointConverter.cs
- LinqDataSourceDeleteEventArgs.cs
- OpenTypeMethods.cs
- WebConfigManager.cs
- DialogResultConverter.cs
- KerberosReceiverSecurityToken.cs
- FilterEventArgs.cs
- TemplateControlParser.cs
- NetworkStream.cs
- cookie.cs
- KerberosSecurityTokenProvider.cs
- MsmqProcessProtocolHandler.cs
- DependencyObjectProvider.cs
- GraphicsContainer.cs
- _NegoStream.cs
- ComboBoxRenderer.cs
- DocumentSequence.cs
- assemblycache.cs
- ProcessProtocolHandler.cs
- MSHTMLHostUtil.cs
- ContentElement.cs
- DispatcherHooks.cs
- CryptoKeySecurity.cs
- PassportIdentity.cs
- ImageMapEventArgs.cs
- DataObjectCopyingEventArgs.cs
- Span.cs
- CultureInfoConverter.cs
- ExternalException.cs