Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Metadata / Edm / MetadataPropertyAttribute.cs / 1305376 / MetadataPropertyAttribute.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Data.Common; using System.Diagnostics; namespace System.Data.Metadata.Edm { ////// Attribute used to mark up properties that should appear in the MetadataItem.MetadataProperties collection /// [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = false)] internal sealed class MetadataPropertyAttribute : Attribute { ////// Initializes a new attribute with built in type kind /// /// Built in type setting Type property /// Sets IsCollectionType property internal MetadataPropertyAttribute(BuiltInTypeKind builtInTypeKind, bool isCollectionType) : this(MetadataItem.GetBuiltInType(builtInTypeKind), isCollectionType) { } ////// Initializes a new attribute with primitive type kind /// /// Primitive type setting Type property /// Sets IsCollectionType property internal MetadataPropertyAttribute(PrimitiveTypeKind primitiveTypeKind, bool isCollectionType) : this(MetadataItem.EdmProviderManifest.GetPrimitiveType(primitiveTypeKind), isCollectionType) { } ////// Initialize a new attribute with complex type kind (corresponding the the CLR type) /// /// CLR type setting Type property /// Sets IsCollectionType property internal MetadataPropertyAttribute(Type type, bool isCollection) : this(ClrComplexType.CreateReadonlyClrComplexType(type, type.Namespace ?? string.Empty, type.Name), isCollection) { } ////// Initialize a new attribute /// /// Sets Type property /// Sets IsCollectionType property private MetadataPropertyAttribute(EdmType type, bool isCollectionType) { Debug.Assert(null != type); _type = type; _isCollectionType = isCollectionType; } private readonly EdmType _type; private readonly bool _isCollectionType; ////// Gets EDM type for values stored in property. /// internal EdmType Type { get { return _type; } } ////// Gets bool indicating whether this is a collection type. /// internal bool IsCollectionType { get { return _isCollectionType; } } } } // 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.Data.Common; using System.Diagnostics; namespace System.Data.Metadata.Edm { ////// Attribute used to mark up properties that should appear in the MetadataItem.MetadataProperties collection /// [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = false)] internal sealed class MetadataPropertyAttribute : Attribute { ////// Initializes a new attribute with built in type kind /// /// Built in type setting Type property /// Sets IsCollectionType property internal MetadataPropertyAttribute(BuiltInTypeKind builtInTypeKind, bool isCollectionType) : this(MetadataItem.GetBuiltInType(builtInTypeKind), isCollectionType) { } ////// Initializes a new attribute with primitive type kind /// /// Primitive type setting Type property /// Sets IsCollectionType property internal MetadataPropertyAttribute(PrimitiveTypeKind primitiveTypeKind, bool isCollectionType) : this(MetadataItem.EdmProviderManifest.GetPrimitiveType(primitiveTypeKind), isCollectionType) { } ////// Initialize a new attribute with complex type kind (corresponding the the CLR type) /// /// CLR type setting Type property /// Sets IsCollectionType property internal MetadataPropertyAttribute(Type type, bool isCollection) : this(ClrComplexType.CreateReadonlyClrComplexType(type, type.Namespace ?? string.Empty, type.Name), isCollection) { } ////// Initialize a new attribute /// /// Sets Type property /// Sets IsCollectionType property private MetadataPropertyAttribute(EdmType type, bool isCollectionType) { Debug.Assert(null != type); _type = type; _isCollectionType = isCollectionType; } private readonly EdmType _type; private readonly bool _isCollectionType; ////// Gets EDM type for values stored in property. /// internal EdmType Type { get { return _type; } } ////// Gets bool indicating whether this is a collection type. /// internal bool IsCollectionType { get { return _isCollectionType; } } } } // 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
- EntityDataSourceContainerNameItem.cs
- ButtonRenderer.cs
- WorkflowOwnershipException.cs
- Tokenizer.cs
- SymmetricAlgorithm.cs
- RangeValidator.cs
- SerializationHelper.cs
- TraceListener.cs
- SqlCacheDependencyDatabase.cs
- SchemaSetCompiler.cs
- SessionIDManager.cs
- ReferencedCollectionType.cs
- BitmapSizeOptions.cs
- SubpageParagraph.cs
- MonitoringDescriptionAttribute.cs
- WeakReadOnlyCollection.cs
- TraceRecords.cs
- SizeChangedEventArgs.cs
- BookmarkScopeManager.cs
- EntityParameter.cs
- ObjectSecurity.cs
- RuleSet.cs
- DESCryptoServiceProvider.cs
- CellRelation.cs
- ResXResourceSet.cs
- IndividualDeviceConfig.cs
- ExpressionBuilder.cs
- StructuredType.cs
- ScriptControlManager.cs
- FixedPageAutomationPeer.cs
- SchemaTypeEmitter.cs
- ExpandCollapsePattern.cs
- CodeEntryPointMethod.cs
- ExtendLockAsyncResult.cs
- Light.cs
- Part.cs
- AdornerHitTestResult.cs
- XmlLoader.cs
- _KerberosClient.cs
- MarshalDirectiveException.cs
- DataGridViewRowsRemovedEventArgs.cs
- GPStream.cs
- InstalledFontCollection.cs
- ContentType.cs
- TextEditorMouse.cs
- __ConsoleStream.cs
- AnchoredBlock.cs
- Rect3D.cs
- CodeGotoStatement.cs
- ConfigurationSettings.cs
- Solver.cs
- WebService.cs
- VarRemapper.cs
- QuotedPairReader.cs
- MulticastDelegate.cs
- HandoffBehavior.cs
- CodeDOMProvider.cs
- BitmapEffect.cs
- MetricEntry.cs
- StringValidator.cs
- followingquery.cs
- VectorCollectionConverter.cs
- TableLayout.cs
- DispatcherSynchronizationContext.cs
- ListenerSessionConnection.cs
- SQLConvert.cs
- TrustSection.cs
- ProcessThread.cs
- CheckStoreFileValidityRequest.cs
- IUnknownConstantAttribute.cs
- ComponentDispatcher.cs
- PassportIdentity.cs
- SqlRowUpdatingEvent.cs
- XmlDataLoader.cs
- ClientSettingsSection.cs
- DecoderReplacementFallback.cs
- SyndicationSerializer.cs
- XmlSerializationGeneratedCode.cs
- ArrayList.cs
- DetailsViewUpdateEventArgs.cs
- LocatorBase.cs
- Stroke.cs
- WithParamAction.cs
- CustomAttributeSerializer.cs
- ReferenceEqualityComparer.cs
- DockAndAnchorLayout.cs
- Vector3DCollectionValueSerializer.cs
- CommandCollectionEditor.cs
- MemberDomainMap.cs
- ReflectionUtil.cs
- TextTreeDeleteContentUndoUnit.cs
- TextEditorCopyPaste.cs
- WebMessageBodyStyleHelper.cs
- ApplicationSecurityInfo.cs
- ToolStripDropDownMenu.cs
- ModifierKeysConverter.cs
- Opcode.cs
- Helper.cs
- CommonGetThemePartSize.cs
- OdbcConnectionPoolProviderInfo.cs