Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Objects / DataClasses / EdmTypeAttribute.cs / 1305376 / EdmTypeAttribute.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- namespace System.Data.Objects.DataClasses { using System; using System.Diagnostics.CodeAnalysis; #pragma warning disable 3015 // no accessible constructors which use only CLS-compliant types ////// Base attribute for schematized types /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Edm")] public abstract class EdmTypeAttribute: System.Attribute { private string _typeName; private string _namespaceName; ////// Only allow derived attributes from this assembly /// internal EdmTypeAttribute() { } ////// Returns the name of the type that this type maps to in the CSpace /// public string Name { get { return _typeName; } set { _typeName = value; } } ////// Returns the namespace of the type that this type maps to in the CSpace /// public string NamespaceName { get { return _namespaceName; } set { _namespaceName = value; } } } } // 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
- Console.cs
- ImplicitInputBrush.cs
- Focus.cs
- SvcFileManager.cs
- TerminateWorkflow.cs
- SettingsBase.cs
- _LocalDataStoreMgr.cs
- DbDataRecord.cs
- SqlDataSourceConfigureSelectPanel.cs
- ImageListStreamer.cs
- PngBitmapDecoder.cs
- StoreItemCollection.Loader.cs
- WebFormDesignerActionService.cs
- ConnectionPointCookie.cs
- EntityViewGenerationAttribute.cs
- DtdParser.cs
- BodyGlyph.cs
- QueryableFilterUserControl.cs
- FileDialog_Vista_Interop.cs
- IPEndPoint.cs
- GraphicsPath.cs
- FormViewInsertedEventArgs.cs
- DateTimeConverter2.cs
- ExtendedPropertyCollection.cs
- QuaternionAnimation.cs
- ReturnValue.cs
- TreeViewTemplateSelector.cs
- DescendantQuery.cs
- Scheduling.cs
- SqlGenerator.cs
- TextEditorSpelling.cs
- Operators.cs
- GradientBrush.cs
- SQLDecimal.cs
- UpDownBase.cs
- SynthesizerStateChangedEventArgs.cs
- FormsAuthenticationUser.cs
- ClientFormsIdentity.cs
- StringToken.cs
- DesignerVerbCollection.cs
- XmlAnyElementAttribute.cs
- WebServiceResponseDesigner.cs
- SpecialFolderEnumConverter.cs
- ServiceHandle.cs
- DefaultBindingPropertyAttribute.cs
- recordstatescratchpad.cs
- TagPrefixAttribute.cs
- MethodImplAttribute.cs
- DiscoveryService.cs
- ImageKeyConverter.cs
- CallId.cs
- RelOps.cs
- BuildResultCache.cs
- Collection.cs
- FloaterParagraph.cs
- ColorComboBox.cs
- SqlCacheDependency.cs
- InputLanguageCollection.cs
- MetadataCache.cs
- ServiceDescriptions.cs
- StreamHelper.cs
- SocketException.cs
- RecognizeCompletedEventArgs.cs
- DesignerEventService.cs
- TypeListConverter.cs
- PrintingPermissionAttribute.cs
- PartialTrustHelpers.cs
- SqlConnectionHelper.cs
- SafeArrayRankMismatchException.cs
- XsdValidatingReader.cs
- AnimatedTypeHelpers.cs
- CachedPathData.cs
- NetworkInterface.cs
- ExpandCollapseProviderWrapper.cs
- PolyLineSegmentFigureLogic.cs
- DataSpaceManager.cs
- AudienceUriMode.cs
- DataGridViewRowStateChangedEventArgs.cs
- SmtpTransport.cs
- XmlLanguage.cs
- File.cs
- DataObjectPastingEventArgs.cs
- IconConverter.cs
- DataRelationCollection.cs
- ScriptReference.cs
- NotCondition.cs
- ArrayWithOffset.cs
- DataServiceQueryOfT.cs
- TextBox.cs
- ContextStaticAttribute.cs
- Marshal.cs
- StringAnimationBase.cs
- TreeViewEvent.cs
- XmlTextEncoder.cs
- UnitySerializationHolder.cs
- SafeNativeMethods.cs
- ToolStripDropDown.cs
- CommandField.cs
- DbInsertCommandTree.cs
- XmlAnyAttributeAttribute.cs