Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntityDesign / Design / System / Data / EntityModel / TypeGeneratedEventArgs.cs / 1305376 / TypeGeneratedEventArgs.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Data; using System.CodeDom; using System.Collections.Generic; using System.Data.Metadata.Edm; using System.Diagnostics; namespace System.Data.Entity.Design { ////// This class encapsulates the EventArgs dispatched as part of the event /// raised when a type is generated. /// public sealed class TypeGeneratedEventArgs : EventArgs { #region Private Data private GlobalItem _typeSource; private CodeTypeReference _baseType; private List_additionalInterfaces = new List (); private List _additionalMembers = new List (); private List _additionalAttributes = new List (); #endregion #region Constructors /// /// Default constructor /// public TypeGeneratedEventArgs() { } ////// Constructor /// /// The source of the event /// The base type of the type being generated public TypeGeneratedEventArgs(GlobalItem typeSource, CodeTypeReference baseType) { this._typeSource = typeSource; this._baseType = baseType; } #endregion #region Properties public GlobalItem TypeSource { get { return this._typeSource; } } ////// The type appropriate for the TypeSource /// public CodeTypeReference BaseType { get { return this._baseType; } set { this._baseType = value; } } ////// Interfaces to be included in the new type's definition /// public ListAdditionalInterfaces { get { return this._additionalInterfaces; } } /// /// Members to be included in the new type's definition /// public ListAdditionalMembers { get { return this._additionalMembers; } } /// /// Attributes to be added to the property's CustomAttributes collection /// public ListAdditionalAttributes { get { return this._additionalAttributes; } } #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
- IDReferencePropertyAttribute.cs
- FrameworkContentElement.cs
- CodeDOMProvider.cs
- SelectedGridItemChangedEvent.cs
- DataGridViewSelectedColumnCollection.cs
- WeakReference.cs
- SimpleRecyclingCache.cs
- TableItemStyle.cs
- MsmqReceiveHelper.cs
- PartitionerStatic.cs
- WindowsPrincipal.cs
- StandardOleMarshalObject.cs
- VirtualDirectoryMappingCollection.cs
- HandlerBase.cs
- AutoSizeComboBox.cs
- FixedTextView.cs
- XomlCompilerResults.cs
- MailDefinition.cs
- UnionExpr.cs
- XmlDictionaryWriter.cs
- ParamArrayAttribute.cs
- LinqDataSourceStatusEventArgs.cs
- MarkedHighlightComponent.cs
- XPathMultyIterator.cs
- InlinedAggregationOperatorEnumerator.cs
- NativeMethods.cs
- DefaultBinder.cs
- VScrollBar.cs
- SqlGatherConsumedAliases.cs
- VectorConverter.cs
- EasingKeyFrames.cs
- EventMappingSettings.cs
- TokenizerHelper.cs
- VariableModifiersHelper.cs
- ResourceWriter.cs
- TraceXPathNavigator.cs
- TdsParserHelperClasses.cs
- SafeSecurityHandles.cs
- XmlSchemaValidationException.cs
- ResourceReader.cs
- FontCacheLogic.cs
- BevelBitmapEffect.cs
- CollectionDataContract.cs
- DeflateStream.cs
- InputReportEventArgs.cs
- ListBindingConverter.cs
- TransformerTypeCollection.cs
- DeadCharTextComposition.cs
- StringToken.cs
- ClientSession.cs
- HttpDigestClientElement.cs
- FrameworkContextData.cs
- DataGridRowAutomationPeer.cs
- ProtocolsSection.cs
- HttpListenerException.cs
- Int32Collection.cs
- ListBoxItem.cs
- LinqToSqlWrapper.cs
- SingleAnimationUsingKeyFrames.cs
- XmlReader.cs
- ScrollProperties.cs
- BitmapEffectInput.cs
- RecommendedAsConfigurableAttribute.cs
- PrePostDescendentsWalker.cs
- Ops.cs
- DataViewManager.cs
- FormViewDeleteEventArgs.cs
- Animatable.cs
- StylusCaptureWithinProperty.cs
- SystemUnicastIPAddressInformation.cs
- ZipIOLocalFileDataDescriptor.cs
- DesignerTextViewAdapter.cs
- Permission.cs
- HttpModuleCollection.cs
- ConfigurationElement.cs
- StringFreezingAttribute.cs
- XmlElementAttribute.cs
- CodePropertyReferenceExpression.cs
- StateWorkerRequest.cs
- DiffuseMaterial.cs
- TypeConverterMarkupExtension.cs
- Viewport3DAutomationPeer.cs
- SqlDependencyListener.cs
- SimpleLine.cs
- ClientRuntimeConfig.cs
- TreeBuilderBamlTranslator.cs
- DrawListViewSubItemEventArgs.cs
- SchemaTypeEmitter.cs
- PageFunction.cs
- Stack.cs
- WindowsStartMenu.cs
- PublisherMembershipCondition.cs
- CompilerErrorCollection.cs
- AttachedPropertyMethodSelector.cs
- ScrollItemPatternIdentifiers.cs
- DefaultProxySection.cs
- TypeConverterHelper.cs
- WebPartCancelEventArgs.cs
- SqlInternalConnectionSmi.cs
- FixedSOMTableRow.cs