Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Metadata / Edm / SimpleType.cs / 1305376 / SimpleType.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; namespace System.Data.Metadata.Edm { ////// Class representing a simple type /// public abstract class SimpleType : EdmType { #region Constructors ////// The default constructor for SimpleType /// internal SimpleType() { // No initialization of item attributes in here, it's used as a pass thru in the case for delay population // of item attributes } ////// The constructor for SimpleType. It takes the required information to identify this type. /// /// The name of this type /// The namespace name of this type /// The version of this type /// dataspace in which the simple type belongs to ///Thrown if either name, namespace or version arguments are null internal SimpleType(string name, string namespaceName, DataSpace dataSpace) : base(name, namespaceName, dataSpace) { } #endregion } } // 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
- SQLStringStorage.cs
- TrackingLocation.cs
- SQLResource.cs
- FullTextBreakpoint.cs
- CatalogZoneDesigner.cs
- MenuItemAutomationPeer.cs
- DomNameTable.cs
- SymmetricCryptoHandle.cs
- ReachDocumentReferenceSerializer.cs
- EntityContainer.cs
- ServiceCredentials.cs
- glyphs.cs
- TreeNode.cs
- OracleFactory.cs
- WaitHandleCannotBeOpenedException.cs
- FormViewModeEventArgs.cs
- BufferedGraphics.cs
- ImageCodecInfo.cs
- SecurityAppliedMessage.cs
- TextDecoration.cs
- DBDataPermissionAttribute.cs
- BinaryWriter.cs
- EventDescriptor.cs
- ValidatedMobileControlConverter.cs
- DbProviderServices.cs
- TextTreePropertyUndoUnit.cs
- XmlPropertyBag.cs
- ItemsChangedEventArgs.cs
- FileEnumerator.cs
- UrlPropertyAttribute.cs
- COM2IDispatchConverter.cs
- InputReportEventArgs.cs
- OleDbPropertySetGuid.cs
- BindableTemplateBuilder.cs
- TagMapInfo.cs
- NumericUpDown.cs
- ValueTable.cs
- DbConnectionFactory.cs
- AtomContentProperty.cs
- WindowsIdentity.cs
- TagPrefixInfo.cs
- BmpBitmapEncoder.cs
- TextOptions.cs
- GeneralTransform3DCollection.cs
- UriSection.cs
- NullableIntMinMaxAggregationOperator.cs
- WebPartAddingEventArgs.cs
- EventLogger.cs
- Grid.cs
- CacheOutputQuery.cs
- TransactionScope.cs
- XmlDataLoader.cs
- PublisherMembershipCondition.cs
- SynchronizedDispatch.cs
- ExpressionBuilder.cs
- WebPartEditorApplyVerb.cs
- Rotation3DKeyFrameCollection.cs
- sitestring.cs
- AxisAngleRotation3D.cs
- SQLInt32.cs
- NativeMethods.cs
- DataGridColumn.cs
- Thread.cs
- CmsInterop.cs
- QuaternionRotation3D.cs
- AbandonedMutexException.cs
- StylusButtonCollection.cs
- TagPrefixCollection.cs
- CodeIdentifier.cs
- GridSplitterAutomationPeer.cs
- ProjectionPruner.cs
- TreeIterators.cs
- RootBrowserWindowProxy.cs
- AutomationElementCollection.cs
- AlternateView.cs
- ReachBasicContext.cs
- Trigger.cs
- EnumValidator.cs
- GatewayDefinition.cs
- TableParaClient.cs
- DbCommandTree.cs
- PreloadedPackages.cs
- ColumnCollection.cs
- User.cs
- WebBrowsableAttribute.cs
- DelegateSerializationHolder.cs
- ChtmlPageAdapter.cs
- DbQueryCommandTree.cs
- RowBinding.cs
- AssemblyCache.cs
- ContourSegment.cs
- StrongNameKeyPair.cs
- DataTransferEventArgs.cs
- PropertyBuilder.cs
- UnsettableComboBox.cs
- NamespaceInfo.cs
- LinqDataSourceInsertEventArgs.cs
- WebSysDescriptionAttribute.cs
- DecoderExceptionFallback.cs
- ObjectListCommandEventArgs.cs