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
- FixedSOMGroup.cs
- LinkClickEvent.cs
- SettingsSavedEventArgs.cs
- InstanceCreationEditor.cs
- ObjectDataSource.cs
- WorkflowServiceBehavior.cs
- AutoResetEvent.cs
- RedirectionProxy.cs
- TagPrefixCollection.cs
- UniformGrid.cs
- CategoryAttribute.cs
- _Rfc2616CacheValidators.cs
- WaitHandle.cs
- ActivityExecutorOperation.cs
- EdmEntityTypeAttribute.cs
- TemplateControlCodeDomTreeGenerator.cs
- Table.cs
- OdbcEnvironment.cs
- DeferredTextReference.cs
- HostedNamedPipeTransportManager.cs
- PropertyConverter.cs
- ProcessHostServerConfig.cs
- DataObjectPastingEventArgs.cs
- RightNameExpirationInfoPair.cs
- MDIClient.cs
- XmlSchemaNotation.cs
- LinqDataSource.cs
- LostFocusEventManager.cs
- DataGridRow.cs
- Int64Storage.cs
- EndEvent.cs
- EqualityComparer.cs
- CultureTableRecord.cs
- baseaxisquery.cs
- IdentityReference.cs
- Token.cs
- AutoResetEvent.cs
- XmlSchemaImport.cs
- SHA512CryptoServiceProvider.cs
- OracleTransaction.cs
- PasswordDeriveBytes.cs
- DoubleAnimationClockResource.cs
- IPEndPoint.cs
- ContainerUIElement3D.cs
- DoubleAnimationUsingKeyFrames.cs
- HttpHandlersSection.cs
- ColumnProvider.cs
- CacheEntry.cs
- ConfigXmlWhitespace.cs
- TreeNodeCollection.cs
- SqlXml.cs
- XamlPoint3DCollectionSerializer.cs
- WaveHeader.cs
- IdleTimeoutMonitor.cs
- ToolStripPanelDesigner.cs
- ChannelManagerHelpers.cs
- CodeNamespaceImport.cs
- MultiView.cs
- XmlnsDefinitionAttribute.cs
- ColumnProvider.cs
- WindowsTreeView.cs
- ObjectTag.cs
- CompressionTransform.cs
- GenericIdentity.cs
- ToolStripOverflowButton.cs
- WindowsListViewGroupHelper.cs
- DataRowCollection.cs
- HttpListenerRequest.cs
- ExpressionEditorAttribute.cs
- CodeChecksumPragma.cs
- ArrayMergeHelper.cs
- HttpResponseHeader.cs
- HttpServerUtilityBase.cs
- ExpressionsCollectionConverter.cs
- PointConverter.cs
- XPathArrayIterator.cs
- FontCollection.cs
- TransactionScopeDesigner.cs
- FileVersionInfo.cs
- CustomSignedXml.cs
- SQLByte.cs
- OutputScopeManager.cs
- ThrowHelper.cs
- Missing.cs
- DataConnectionHelper.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- EntitySet.cs
- IdentityReference.cs
- OptimalTextSource.cs
- SecurityUtils.cs
- HttpHeaderCollection.cs
- ToolboxComponentsCreatingEventArgs.cs
- IssuanceLicense.cs
- Timer.cs
- SymmetricSecurityProtocolFactory.cs
- XmlDocument.cs
- ResponseStream.cs
- Exceptions.cs
- UpdateCompiler.cs
- WebPartsSection.cs