Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / CommandEventArgs.cs / 1305376 / CommandEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI.WebControls { using System; ////// public class CommandEventArgs : EventArgs { private string commandName; private object argument; ///Provides data for the ///event. /// public CommandEventArgs(CommandEventArgs e) : this(e.CommandName, e.CommandArgument) { } ///Initializes a new instance of the ///class with another . /// public CommandEventArgs(string commandName, object argument) { this.commandName = commandName; this.argument = argument; } ///Initializes a new instance of the ///class with the specified command name /// and argument. /// public string CommandName { get { return commandName; } } ///Gets the name of the command. This property is read-only. ////// public object CommandArgument { get { return argument; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets the argument for the command. This property is read-only. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DispatchProxy.cs
- ManipulationPivot.cs
- RubberbandSelector.cs
- Int32RectConverter.cs
- SyncOperationState.cs
- ColumnMap.cs
- InputLanguageEventArgs.cs
- KnownIds.cs
- SHA512.cs
- RegisteredHiddenField.cs
- KeyValueConfigurationElement.cs
- FlagsAttribute.cs
- FilterEventArgs.cs
- XsdDataContractImporter.cs
- Vector3DConverter.cs
- InstanceOwner.cs
- CatalogPart.cs
- RegexStringValidator.cs
- SrgsGrammar.cs
- GridViewRowEventArgs.cs
- RC2CryptoServiceProvider.cs
- XmlArrayAttribute.cs
- TreeNodeStyleCollection.cs
- ZipIOExtraFieldElement.cs
- RawStylusSystemGestureInputReport.cs
- XmlSchemaComplexContentRestriction.cs
- CheckBoxBaseAdapter.cs
- IsolatedStoragePermission.cs
- TextTreeExtractElementUndoUnit.cs
- QueryResponse.cs
- VariableBinder.cs
- ExpressionNode.cs
- QueryContinueDragEvent.cs
- SiteMap.cs
- GroupBox.cs
- XmlAnyElementAttributes.cs
- Decimal.cs
- ChangeInterceptorAttribute.cs
- WebEvents.cs
- FlowchartStart.xaml.cs
- DataGridViewCell.cs
- CachingHintValidation.cs
- DebugController.cs
- BitmapFrameDecode.cs
- PathFigureCollection.cs
- SamlDoNotCacheCondition.cs
- PropertyDescriptorComparer.cs
- StreamReader.cs
- SqlMethodCallConverter.cs
- LinqDataSourceContextEventArgs.cs
- WinFormsSecurity.cs
- DatatypeImplementation.cs
- Exceptions.cs
- SmtpNtlmAuthenticationModule.cs
- RecognizeCompletedEventArgs.cs
- ContextStack.cs
- SizeAnimation.cs
- InvokeCompletedEventArgs.cs
- PageThemeBuildProvider.cs
- Hashtable.cs
- GridItemPatternIdentifiers.cs
- ImageDrawing.cs
- CodeLabeledStatement.cs
- RootContext.cs
- LinqExpressionNormalizer.cs
- PeerEndPoint.cs
- ConnectionManagementElement.cs
- RenderContext.cs
- Error.cs
- Condition.cs
- SqlExpander.cs
- SplashScreen.cs
- GB18030Encoding.cs
- Geometry3D.cs
- MenuItem.cs
- ConnectionModeReader.cs
- ValueTypePropertyReference.cs
- ZipArchive.cs
- ExpressionBuilderCollection.cs
- OutputCacheProfileCollection.cs
- Html32TextWriter.cs
- HostedElements.cs
- OleDbCommand.cs
- HttpCachePolicyElement.cs
- FlatButtonAppearance.cs
- ObjectDataSourceEventArgs.cs
- MergePropertyDescriptor.cs
- Assert.cs
- RouteParser.cs
- ValueUnavailableException.cs
- SmtpMail.cs
- SplitterPanel.cs
- DrawingCollection.cs
- DataGridTablesFactory.cs
- StringAnimationUsingKeyFrames.cs
- SQLInt16Storage.cs
- CheckBox.cs
- LabelLiteral.cs
- RadioButtonFlatAdapter.cs
- DuplicateWaitObjectException.cs