Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntityDesign / Design / System / Data / EntityModel / PropertyGeneratedEventArgs.cs / 1305376 / PropertyGeneratedEventArgs.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 property is generated. /// public sealed class PropertyGeneratedEventArgs : EventArgs { #region Private Data private MetadataItem _propertySource; private string _backingFieldName; private CodeTypeReference _returnType; private List_additionalGetStatements = new List (); private List _additionalSetStatements = new List (); private List _additionalAttributes = new List (); #endregion #region Constructors /// /// Default constructor /// public PropertyGeneratedEventArgs() { } ////// Constructor /// /// The event source /// The name of the field corresponding to the property /// The property return type public PropertyGeneratedEventArgs(MetadataItem propertySource, string backingFieldName, CodeTypeReference returnType) { this._propertySource = propertySource; this._backingFieldName = backingFieldName; this._returnType = returnType; } #endregion #region Properties ////// The Metadata object that is the source of the property /// public MetadataItem PropertySource { get { return this._propertySource; } } ////// The name of the field that backs the property; can be null in the case of /// navigation property /// public string BackingFieldName { get { return this._backingFieldName; } } ////// The type of the property by default; if changed by the user, the new value /// will be used by the code generator /// public CodeTypeReference ReturnType { get { return this._returnType; } set { this._returnType = value; } } ////// Statements to be included in the property's getter /// public ListAdditionalGetStatements { get { return this._additionalGetStatements; } } /// /// Statements to be included in the property's setter /// public ListAdditionalSetStatements { get { return _additionalSetStatements; } } /// /// 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
- Decoder.cs
- Configuration.cs
- ProcessThread.cs
- Model3DGroup.cs
- HtmlWindowCollection.cs
- TextSpan.cs
- ImageDrawing.cs
- StringAnimationBase.cs
- DSACryptoServiceProvider.cs
- ByteStack.cs
- QueuePropertyVariants.cs
- CapabilitiesUse.cs
- AssemblyHash.cs
- CompositeScriptReferenceEventArgs.cs
- DetailsViewUpdatedEventArgs.cs
- ScrollBar.cs
- CommandHelpers.cs
- WebPartRestoreVerb.cs
- HelpProvider.cs
- DbDataSourceEnumerator.cs
- RecognitionEventArgs.cs
- EffectiveValueEntry.cs
- MessageQueueCriteria.cs
- ProfileSettings.cs
- UnsafeNativeMethods.cs
- XmlSchemaProviderAttribute.cs
- GridToolTip.cs
- UpdateCommandGenerator.cs
- GridViewUpdateEventArgs.cs
- WsdlContractConversionContext.cs
- ContentElement.cs
- ObsoleteAttribute.cs
- VectorAnimationBase.cs
- LoginUtil.cs
- XmlSchemaValidator.cs
- MeasureItemEvent.cs
- Int16AnimationBase.cs
- Object.cs
- XmlILStorageConverter.cs
- Debug.cs
- DecoderNLS.cs
- DbMetaDataColumnNames.cs
- PrintDialogException.cs
- StringAnimationUsingKeyFrames.cs
- FilterElement.cs
- ProfileProvider.cs
- XmlReader.cs
- StylusDownEventArgs.cs
- HtmlLabelAdapter.cs
- TextWriterTraceListener.cs
- ErrorWrapper.cs
- XamlSerializationHelper.cs
- BinaryOperationBinder.cs
- QilNode.cs
- ForwardPositionQuery.cs
- CompositeActivityTypeDescriptor.cs
- RegexCode.cs
- DBConnection.cs
- SessionEndingEventArgs.cs
- HttpGetProtocolReflector.cs
- XMLUtil.cs
- ResourceAttributes.cs
- PathStreamGeometryContext.cs
- SelectorItemAutomationPeer.cs
- RelationshipDetailsRow.cs
- Aggregates.cs
- XmlUrlEditor.cs
- ListView.cs
- LogRecordSequence.cs
- CmsUtils.cs
- JsonCollectionDataContract.cs
- MetadataArtifactLoaderCompositeFile.cs
- SecurityTraceRecordHelper.cs
- TrackBarDesigner.cs
- OleDbConnectionFactory.cs
- PriorityRange.cs
- StructuredType.cs
- StreamingContext.cs
- BindingList.cs
- ValueTypeFixupInfo.cs
- PanelStyle.cs
- TreeNode.cs
- ListViewVirtualItemsSelectionRangeChangedEvent.cs
- SocketPermission.cs
- RequestContext.cs
- UrlSyndicationContent.cs
- AdapterUtil.cs
- Span.cs
- Visual3D.cs
- AesManaged.cs
- SerializerDescriptor.cs
- QueryResponse.cs
- TemplateManager.cs
- TreeNodeBindingCollection.cs
- EntityDataSourceChangedEventArgs.cs
- TransactionState.cs
- ReadOnlyActivityGlyph.cs
- LayoutTable.cs
- WebHeaderCollection.cs
- COAUTHIDENTITY.cs