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
- IndexerNameAttribute.cs
- httpserverutility.cs
- RawStylusInputReport.cs
- PrivilegedConfigurationManager.cs
- TextWriterTraceListener.cs
- CanonicalXml.cs
- DataGridViewComponentPropertyGridSite.cs
- InputScope.cs
- SoapHelper.cs
- MobileDeviceCapabilitiesSectionHandler.cs
- FixedTextContainer.cs
- DataViewSettingCollection.cs
- DCSafeHandle.cs
- ForEachAction.cs
- WizardPanel.cs
- HtmlHistory.cs
- StorageFunctionMapping.cs
- BitmapEffectvisualstate.cs
- RangeValidator.cs
- CodeDOMUtility.cs
- ColorIndependentAnimationStorage.cs
- RectIndependentAnimationStorage.cs
- ReferenceEqualityComparer.cs
- Metadata.cs
- OrderedDictionary.cs
- PageBuildProvider.cs
- TickBar.cs
- GeometryCollection.cs
- PersistChildrenAttribute.cs
- keycontainerpermission.cs
- BaseAsyncResult.cs
- HttpCookie.cs
- CustomErrorCollection.cs
- PropertySourceInfo.cs
- SQLResource.cs
- UdpDiscoveryEndpoint.cs
- PlacementWorkspace.cs
- ProfileSettings.cs
- FrameSecurityDescriptor.cs
- WorkflowCompensationBehavior.cs
- IntSecurity.cs
- Manipulation.cs
- PersonalizationProvider.cs
- wgx_exports.cs
- WindowsGraphicsWrapper.cs
- xsdvalidator.cs
- MouseGesture.cs
- SQLDateTime.cs
- SystemIcmpV4Statistics.cs
- BitmapEffectCollection.cs
- Number.cs
- SamlSerializer.cs
- SubstitutionDesigner.cs
- FileLogRecord.cs
- PeerObject.cs
- ExpressionParser.cs
- NativeMethods.cs
- FontDialog.cs
- NullableConverter.cs
- ProfilePropertySettingsCollection.cs
- PersonalizationStateInfo.cs
- LazyTextWriterCreator.cs
- HtmlGenericControl.cs
- SQLChars.cs
- ConfigXmlElement.cs
- XmlSerializableWriter.cs
- PackageRelationshipCollection.cs
- XmlIncludeAttribute.cs
- ClientSession.cs
- DecoderFallback.cs
- NameSpaceEvent.cs
- HttpApplication.cs
- PersonalizationState.cs
- DbXmlEnabledProviderManifest.cs
- COM2AboutBoxPropertyDescriptor.cs
- BamlRecords.cs
- HiddenFieldPageStatePersister.cs
- SafeNativeMethods.cs
- MDIClient.cs
- CallbackValidatorAttribute.cs
- PartBasedPackageProperties.cs
- RawUIStateInputReport.cs
- CryptographicAttribute.cs
- ClientScriptManagerWrapper.cs
- GetFileNameResult.cs
- ObjectListField.cs
- AnnotationResource.cs
- ThreadAbortException.cs
- WinFormsUtils.cs
- SchemaLookupTable.cs
- CacheMemory.cs
- NameGenerator.cs
- _HeaderInfoTable.cs
- BooleanStorage.cs
- Tag.cs
- Ref.cs
- SortQuery.cs
- SessionStateUtil.cs
- XsdSchemaFileEditor.cs
- ScanQueryOperator.cs