Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / ObjectDataSourceMethodEventArgs.cs / 1 / ObjectDataSourceMethodEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections.Specialized; using System.ComponentModel; using System.Security.Permissions; ////// Represents data that is passed into an ObjectDataSourceMethodEventHandler delegate. /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ObjectDataSourceMethodEventArgs : CancelEventArgs { private IOrderedDictionary _inputParameters; ////// Creates a new instance of ObjectDataSourceMethodEventArgs. /// public ObjectDataSourceMethodEventArgs(IOrderedDictionary inputParameters) { _inputParameters = inputParameters; } ////// The input parameters that will be passed to the method that will be invoked. /// Change these parameters if the names and/or types need to be modified /// for the invocation to succeed. /// public IOrderedDictionary InputParameters { get { return _inputParameters; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RegistryDataKey.cs
- BasicDesignerLoader.cs
- SecurityState.cs
- HtmlImage.cs
- TemplateBaseAction.cs
- ContourSegment.cs
- SqlRecordBuffer.cs
- ParseHttpDate.cs
- ContourSegment.cs
- TabPage.cs
- SplitContainerDesigner.cs
- HttpCapabilitiesSectionHandler.cs
- XamlPathDataSerializer.cs
- HtmlButton.cs
- ObjectListFieldsPage.cs
- ManagementInstaller.cs
- CheckBoxFlatAdapter.cs
- WebPartVerbCollection.cs
- XmlArrayItemAttributes.cs
- HttpAsyncResult.cs
- XmlSigningNodeWriter.cs
- XmlSchemas.cs
- SqlCacheDependencySection.cs
- SoapConverter.cs
- IgnoreSection.cs
- ComboBoxItem.cs
- SmiEventStream.cs
- CacheHelper.cs
- PasswordBox.cs
- Utility.cs
- CompiledQueryCacheKey.cs
- DiscoveryEndpointElement.cs
- PropertyBuilder.cs
- PresentationTraceSources.cs
- Style.cs
- Line.cs
- ApplicationActivator.cs
- XmlNodeList.cs
- XmlHierarchicalDataSourceView.cs
- SubstitutionList.cs
- ToolStrip.cs
- DictationGrammar.cs
- NetSectionGroup.cs
- ContextDataSourceContextData.cs
- SafeArrayRankMismatchException.cs
- AttachedPropertyMethodSelector.cs
- XmlDictionaryReaderQuotas.cs
- COMException.cs
- AdRotatorDesigner.cs
- TextMessageEncodingBindingElement.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- MsmqIntegrationAppDomainProtocolHandler.cs
- VisualState.cs
- Vector3D.cs
- PointLight.cs
- ProtocolsConfiguration.cs
- CircleHotSpot.cs
- SettingsContext.cs
- StatusBarPanel.cs
- TaskSchedulerException.cs
- IPEndPointCollection.cs
- EncoderFallback.cs
- KeyGestureConverter.cs
- BoundingRectTracker.cs
- EditorBrowsableAttribute.cs
- BookmarkScopeManager.cs
- StringConcat.cs
- SQLMembershipProvider.cs
- JsonEnumDataContract.cs
- Italic.cs
- WebPartZone.cs
- DelegateBodyWriter.cs
- WebChannelFactory.cs
- AssemblyBuilder.cs
- RunClient.cs
- TraceSwitch.cs
- BindingElementExtensionElement.cs
- ButtonRenderer.cs
- ObjectQuery.cs
- FrameAutomationPeer.cs
- RNGCryptoServiceProvider.cs
- AutomationPattern.cs
- SpecularMaterial.cs
- Rotation3DKeyFrameCollection.cs
- ListViewItem.cs
- MachineSettingsSection.cs
- HtmlInputControl.cs
- CellParagraph.cs
- Dispatcher.cs
- HighlightVisual.cs
- WasEndpointConfigContainer.cs
- BinaryExpression.cs
- ToolStripRenderer.cs
- DbConnectionOptions.cs
- TagMapCollection.cs
- OutputCacheProfile.cs
- SqlConnectionFactory.cs
- XNodeValidator.cs
- SchemaImporterExtension.cs
- Atom10FormatterFactory.cs