Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / UI / WebControls / ListViewCommandEventArgs.cs / 1305376 / ListViewCommandEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Diagnostics.CodeAnalysis; namespace System.Web.UI.WebControls { public class ListViewCommandEventArgs : CommandEventArgs { private ListViewItem _item; private object _commandSource; [SuppressMessage("Microsoft.Security", "CA2109:ReviewVisibleEventHandlers", MessageId = "2#")] public ListViewCommandEventArgs(ListViewItem item, object commandSource, CommandEventArgs originalArgs) : base(originalArgs) { _item = item; _commandSource = commandSource; } public object CommandSource { get { return _commandSource; } } public ListViewItem Item { get { return _item; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ImageCodecInfoPrivate.cs
- PropertyCollection.cs
- PropertyInformation.cs
- PropertiesTab.cs
- ContextMenuStrip.cs
- Rectangle.cs
- LowerCaseStringConverter.cs
- EtwTrace.cs
- CacheSection.cs
- ForAllOperator.cs
- BooleanAnimationUsingKeyFrames.cs
- NativeRightsManagementAPIsStructures.cs
- CellParagraph.cs
- ObjectConverter.cs
- SqlCrossApplyToCrossJoin.cs
- ActivityScheduledRecord.cs
- DataBinder.cs
- OpCellTreeNode.cs
- CriticalHandle.cs
- RoutedCommand.cs
- TextRenderer.cs
- DataServiceHostFactory.cs
- GridViewCommandEventArgs.cs
- Accessors.cs
- DataGridViewCellLinkedList.cs
- HyperLinkField.cs
- XmlException.cs
- UnlockInstanceCommand.cs
- ToggleButtonAutomationPeer.cs
- BamlBinaryReader.cs
- Line.cs
- VisualTransition.cs
- FunctionNode.cs
- ExpressionVisitor.cs
- ResolvedKeyFrameEntry.cs
- DataServiceExpressionVisitor.cs
- StopStoryboard.cs
- HierarchicalDataSourceIDConverter.cs
- FileSecurity.cs
- CultureSpecificStringDictionary.cs
- DataConnectionHelper.cs
- WorkflowApplicationAbortedException.cs
- EndPoint.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- WebEvents.cs
- TypeDescriptor.cs
- OdbcErrorCollection.cs
- FloaterBaseParagraph.cs
- PlainXmlDeserializer.cs
- StylusCollection.cs
- UserControlCodeDomTreeGenerator.cs
- SafeRightsManagementPubHandle.cs
- PagesChangedEventArgs.cs
- ResetableIterator.cs
- NotFiniteNumberException.cs
- GlobalizationSection.cs
- TrackingMemoryStream.cs
- NodeLabelEditEvent.cs
- ValidationRule.cs
- XmlWellformedWriter.cs
- DbProviderManifest.cs
- ObjectTag.cs
- TypeExtensionConverter.cs
- MethodCallExpression.cs
- MultipleViewProviderWrapper.cs
- ConfigurationCollectionAttribute.cs
- AssemblySettingAttributes.cs
- PreloadedPackages.cs
- SubMenuStyleCollectionEditor.cs
- TreeViewEvent.cs
- DelegatingChannelListener.cs
- GreaterThanOrEqual.cs
- ErrorFormatter.cs
- ParserContext.cs
- DiscriminatorMap.cs
- EntityEntry.cs
- SQLInt32Storage.cs
- WebPartActionVerb.cs
- DbProviderSpecificTypePropertyAttribute.cs
- AcceleratedTokenAuthenticator.cs
- OutOfProcStateClientManager.cs
- IntSecurity.cs
- ThicknessKeyFrameCollection.cs
- CompModSwitches.cs
- HostedTransportConfigurationManager.cs
- AsyncMethodInvoker.cs
- MimeXmlReflector.cs
- FormViewPageEventArgs.cs
- SqlTriggerContext.cs
- SolidColorBrush.cs
- HtmlInputControl.cs
- ExportOptions.cs
- ResourcePropertyMemberCodeDomSerializer.cs
- SystemIcmpV6Statistics.cs
- GroupItemAutomationPeer.cs
- D3DImage.cs
- NetworkAddressChange.cs
- URL.cs
- HostedBindingBehavior.cs
- AudioFormatConverter.cs