Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / ObjectDataSourceEventArgs.cs / 1305376 / ObjectDataSourceEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; ////// Represents data that is passed into an ObjectDataSourceObjectEventHandler delegate. /// public class ObjectDataSourceEventArgs : EventArgs { private object _objectInstance; ////// Creates a new instance of ObjectDataSourceEventArgs. /// public ObjectDataSourceEventArgs(object objectInstance) : base() { _objectInstance = objectInstance; } ////// The instance of the object created by the ObjectDataSource. Set this /// property if you need to create the object using a non-default /// constructor. /// public object ObjectInstance { get { return _objectInstance; } set { _objectInstance = 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
- Size3DConverter.cs
- DbDataReader.cs
- Color.cs
- SocketPermission.cs
- MatrixStack.cs
- CustomErrorsSection.cs
- FileSystemEventArgs.cs
- BinaryReader.cs
- ForceCopyBuildProvider.cs
- SqlTopReducer.cs
- SchemaElementDecl.cs
- StylusOverProperty.cs
- EncryptedType.cs
- DataGridViewButtonCell.cs
- BaseWebProxyFinder.cs
- EntityReference.cs
- ThreadPool.cs
- GridViewCancelEditEventArgs.cs
- DesignTimeTemplateParser.cs
- PieceNameHelper.cs
- HMACSHA384.cs
- DependencyPropertyConverter.cs
- PerspectiveCamera.cs
- BuildProvider.cs
- ClonableStack.cs
- NetworkCredential.cs
- LogoValidationException.cs
- HelpInfo.cs
- CompressionTracing.cs
- ScrollViewerAutomationPeer.cs
- OleAutBinder.cs
- JournalEntryListConverter.cs
- UIElementParaClient.cs
- WebPartCatalogAddVerb.cs
- SourceInterpreter.cs
- CatalogZoneBase.cs
- AlternateView.cs
- DataColumnPropertyDescriptor.cs
- SetStoryboardSpeedRatio.cs
- RowVisual.cs
- WebRequestModuleElement.cs
- NodeLabelEditEvent.cs
- Timeline.cs
- PageTheme.cs
- DataGridToolTip.cs
- HttpContext.cs
- DSGeneratorProblem.cs
- HotCommands.cs
- PersonalizationProvider.cs
- SignerInfo.cs
- SubclassTypeValidator.cs
- PersonalizationEntry.cs
- SchemaImporterExtensionsSection.cs
- util.cs
- DbProviderServices.cs
- BatchWriter.cs
- KeyFrames.cs
- DataSourceSelectArguments.cs
- XmlSchemaAnyAttribute.cs
- HtmlTableRowCollection.cs
- DLinqAssociationProvider.cs
- Cloud.cs
- MethodToken.cs
- SocketStream.cs
- ManagementEventArgs.cs
- DataSourceCollectionBase.cs
- uribuilder.cs
- MulticastIPAddressInformationCollection.cs
- ScalarType.cs
- DataMemberFieldConverter.cs
- ToggleButton.cs
- DataTransferEventArgs.cs
- CacheChildrenQuery.cs
- LabelDesigner.cs
- ActivityMarkupSerializer.cs
- ButtonPopupAdapter.cs
- Nullable.cs
- ClientTargetCollection.cs
- DependsOnAttribute.cs
- EventMappingSettings.cs
- ServiceParser.cs
- OrderedEnumerableRowCollection.cs
- XmlDataCollection.cs
- PolyBezierSegment.cs
- ResXDataNode.cs
- ContextMenuStripActionList.cs
- WebZone.cs
- TextEditorCopyPaste.cs
- AssemblyInfo.cs
- DataColumnCollection.cs
- Brushes.cs
- CustomAttribute.cs
- AxHost.cs
- IteratorFilter.cs
- LogFlushAsyncResult.cs
- sqlstateclientmanager.cs
- ToolCreatedEventArgs.cs
- TypefaceMetricsCache.cs
- DurableDispatcherAddressingFault.cs
- DispatcherExceptionFilterEventArgs.cs