Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / ObjectDataSourceEventArgs.cs / 1 / ObjectDataSourceEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Security.Permissions; ////// Represents data that is passed into an ObjectDataSourceObjectEventHandler delegate. /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EllipseGeometry.cs
- ProfileEventArgs.cs
- MetaType.cs
- SiteMap.cs
- ListenerConfig.cs
- ScrollBar.cs
- AspCompat.cs
- OrthographicCamera.cs
- _Connection.cs
- StreamingContext.cs
- ServicePoint.cs
- NullNotAllowedCollection.cs
- TdsParser.cs
- WindowsTokenRoleProvider.cs
- Wildcard.cs
- BinaryParser.cs
- ObjectDisposedException.cs
- Italic.cs
- Function.cs
- ApplicationServiceHelper.cs
- CommandManager.cs
- AutomationPeer.cs
- InvokePattern.cs
- CollectionDataContract.cs
- ScriptResourceAttribute.cs
- ReachVisualSerializer.cs
- GridViewColumnHeaderAutomationPeer.cs
- BaseCodePageEncoding.cs
- Freezable.cs
- RadioButtonAutomationPeer.cs
- XmlComment.cs
- sqlstateclientmanager.cs
- ColumnHeader.cs
- GroupBox.cs
- StringUtil.cs
- StateBag.cs
- LinkedList.cs
- ColumnBinding.cs
- MailAddressCollection.cs
- SemanticTag.cs
- FirstMatchCodeGroup.cs
- BitArray.cs
- ConfigsHelper.cs
- SurrogateEncoder.cs
- FontCollection.cs
- ConnectionsZone.cs
- BitmapEffectRenderDataResource.cs
- WebBrowser.cs
- AtomParser.cs
- XmlEventCache.cs
- ProxyWebPartConnectionCollection.cs
- MouseEvent.cs
- FigureHelper.cs
- CaseStatementSlot.cs
- ToolStripRenderEventArgs.cs
- SelectionPatternIdentifiers.cs
- StringExpressionSet.cs
- DiagnosticsConfiguration.cs
- Schema.cs
- BitmapEffectGeneralTransform.cs
- BindingManagerDataErrorEventArgs.cs
- DbConnectionPool.cs
- SerializationException.cs
- ButtonBase.cs
- DisplayNameAttribute.cs
- ColumnReorderedEventArgs.cs
- StringStorage.cs
- DependencyObjectProvider.cs
- SqlParameterCollection.cs
- SelfIssuedAuthAsymmetricKey.cs
- SerTrace.cs
- ServiceHostFactory.cs
- OpenFileDialog.cs
- InternalMappingException.cs
- DynamicHyperLink.cs
- TemplatedEditableDesignerRegion.cs
- WeakRefEnumerator.cs
- UIElementHelper.cs
- RSAOAEPKeyExchangeFormatter.cs
- RsaElement.cs
- X509Certificate2.cs
- ThreadInterruptedException.cs
- TemplatedEditableDesignerRegion.cs
- MoveSizeWinEventHandler.cs
- ArithmeticLiteral.cs
- InteropAutomationProvider.cs
- CollectionConverter.cs
- SmtpLoginAuthenticationModule.cs
- CustomAttributeBuilder.cs
- ServiceModelActivity.cs
- WebServiceErrorEvent.cs
- xml.cs
- PropertyMapper.cs
- RestHandler.cs
- TemplatePagerField.cs
- TextFormatterImp.cs
- DeflateStream.cs
- IncrementalCompileAnalyzer.cs
- HtmlShimManager.cs
- MetadataCache.cs