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
- OleDbConnectionFactory.cs
- StdValidatorsAndConverters.cs
- WindowsToolbarAsMenu.cs
- StreamGeometry.cs
- VirtualPathData.cs
- DataGridHeaderBorder.cs
- InfoCardRSAPKCS1SignatureFormatter.cs
- MonikerBuilder.cs
- ObjectSet.cs
- TimeSpanSecondsConverter.cs
- SafeNativeMethods.cs
- HierarchicalDataTemplate.cs
- OpCopier.cs
- FontEmbeddingManager.cs
- FileChangesMonitor.cs
- BaseInfoTable.cs
- PartialArray.cs
- PointConverter.cs
- ProxyWebPart.cs
- SiteMapPath.cs
- DynamicMetaObject.cs
- SerializationHelper.cs
- CheckBoxFlatAdapter.cs
- EntitySetBaseCollection.cs
- KeyGesture.cs
- ToolStripDesignerUtils.cs
- JoinQueryOperator.cs
- Attribute.cs
- IdentityHolder.cs
- OutputCacheSection.cs
- TextAutomationPeer.cs
- DataGridViewCellEventArgs.cs
- ActivityDelegate.cs
- Literal.cs
- GridPatternIdentifiers.cs
- CreateParams.cs
- EncoderExceptionFallback.cs
- RTTypeWrapper.cs
- SizeFConverter.cs
- HashCodeCombiner.cs
- SQLDecimalStorage.cs
- DbSetClause.cs
- HtmlInputButton.cs
- CmsUtils.cs
- LazyTextWriterCreator.cs
- RSACryptoServiceProvider.cs
- LicenseProviderAttribute.cs
- MetabaseSettingsIis7.cs
- StringResourceManager.cs
- VariantWrapper.cs
- SelectedCellsCollection.cs
- TextSpanModifier.cs
- ContentControl.cs
- PickBranchDesigner.xaml.cs
- DataGridViewCellStateChangedEventArgs.cs
- HebrewCalendar.cs
- ListBox.cs
- FormatConvertedBitmap.cs
- XmlEncoding.cs
- TextSimpleMarkerProperties.cs
- RuntimeEnvironment.cs
- ContractAdapter.cs
- FillErrorEventArgs.cs
- IPAddressCollection.cs
- OracleConnection.cs
- AmbiguousMatchException.cs
- ModulesEntry.cs
- DataTablePropertyDescriptor.cs
- WebBrowserBase.cs
- TableLayout.cs
- HtmlTable.cs
- SymDocumentType.cs
- AppSettingsReader.cs
- EntityDataSourceSelectingEventArgs.cs
- DataObjectAttribute.cs
- XmlSchemaComplexContentExtension.cs
- WindowsListViewSubItem.cs
- _SecureChannel.cs
- RepeaterItemCollection.cs
- Overlapped.cs
- GregorianCalendar.cs
- PropertyIdentifier.cs
- ItemCheckedEvent.cs
- PageContentAsyncResult.cs
- ActionFrame.cs
- BinaryConverter.cs
- CollectionBase.cs
- PassportPrincipal.cs
- TextTreeTextElementNode.cs
- LabelEditEvent.cs
- ValidatedControlConverter.cs
- FixedHyperLink.cs
- TargetPerspective.cs
- Parsers.cs
- MethodAccessException.cs
- BoundColumn.cs
- NavigationService.cs
- NetMsmqSecurityMode.cs
- JsonXmlDataContract.cs
- FontConverter.cs