Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / CommandEventArgs.cs / 1 / CommandEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI.WebControls { using System; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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; } } } }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
- NamespaceMapping.cs
- CodeDirectoryCompiler.cs
- webproxy.cs
- TypeConstant.cs
- StringValueSerializer.cs
- SeekableMessageNavigator.cs
- XmlWriterTraceListener.cs
- IPGlobalProperties.cs
- FrameworkElementFactory.cs
- ModelUIElement3D.cs
- SynchronizationValidator.cs
- RequestCachePolicyConverter.cs
- RewritingProcessor.cs
- Tablet.cs
- AuthStoreRoleProvider.cs
- clipboard.cs
- IgnoreSectionHandler.cs
- rsa.cs
- MissingMemberException.cs
- EntryIndex.cs
- _emptywebproxy.cs
- IndependentlyAnimatedPropertyMetadata.cs
- FrameworkObject.cs
- PreviewPrintController.cs
- ProfileSettings.cs
- SafeMILHandleMemoryPressure.cs
- XmlAttributeOverrides.cs
- CardSpacePolicyElement.cs
- ActivityBindForm.Designer.cs
- MenuAdapter.cs
- formatstringdialog.cs
- ConstructorArgumentAttribute.cs
- PropertyMap.cs
- InfoCardTraceRecord.cs
- DataColumnPropertyDescriptor.cs
- XmlBinaryReaderSession.cs
- InitializationEventAttribute.cs
- Common.cs
- ImageBrush.cs
- DesignerSerializationOptionsAttribute.cs
- QueryCacheKey.cs
- NumberSubstitution.cs
- VirtualizedContainerService.cs
- BaseCAMarshaler.cs
- DesignerVerbCollection.cs
- login.cs
- SqlDataSourceCustomCommandPanel.cs
- ProfilePropertySettings.cs
- DataColumnMappingCollection.cs
- SqlServer2KCompatibilityAnnotation.cs
- ContextInformation.cs
- Evidence.cs
- ValueProviderWrapper.cs
- Touch.cs
- WebControlParameterProxy.cs
- HttpRawResponse.cs
- XPathNodeHelper.cs
- TypedAsyncResult.cs
- ToolStripComboBox.cs
- ResponseBodyWriter.cs
- HttpListenerTimeoutManager.cs
- codemethodreferenceexpression.cs
- WindowsAuthenticationModule.cs
- PersonalizationState.cs
- __TransparentProxy.cs
- SqlError.cs
- TokenizerHelper.cs
- LocalizationParserHooks.cs
- PermissionSetTriple.cs
- XmlSerializationReader.cs
- SocketInformation.cs
- XmlWhitespace.cs
- TypeDescriptorContext.cs
- TextDocumentView.cs
- ChildDocumentBlock.cs
- MonitoringDescriptionAttribute.cs
- StaticDataManager.cs
- CodeCatchClause.cs
- SiteMapDataSource.cs
- TextRangeEditTables.cs
- CodeDirectionExpression.cs
- PropertyConverter.cs
- MessageDecoder.cs
- ZoneMembershipCondition.cs
- recordstatefactory.cs
- XPathExpr.cs
- WebPartConnectionsCloseVerb.cs
- CodeDirectoryCompiler.cs
- IdnMapping.cs
- RuleRefElement.cs
- OdbcRowUpdatingEvent.cs
- LinearGradientBrush.cs
- TextCharacters.cs
- CharEntityEncoderFallback.cs
- XmlWriter.cs
- ClientWindowsAuthenticationMembershipProvider.cs
- AsnEncodedData.cs
- TypeConstant.cs
- RelationshipSet.cs
- TypeElement.cs