Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / MIT / System / Web / UI / MobileControls / ListCommandEventArgs.cs / 1305376 / ListCommandEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Security.Permissions; namespace System.Web.UI.MobileControls { /* * List command event arguments * * Copyright (c) 2000 Microsoft Corporation */ ///[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] public class ListCommandEventArgs : CommandEventArgs { /// protected static readonly String DefaultCommand = "Default"; private MobileListItem _item; private Object _commandSource; /// public ListCommandEventArgs(MobileListItem item, Object commandSource, CommandEventArgs originalArgs) : base(originalArgs) { _item = item; _commandSource = commandSource; } /// public ListCommandEventArgs(MobileListItem item, Object commandSource) : base(DefaultCommand, item) { _item = item; _commandSource = commandSource; } /// public MobileListItem ListItem { get { return _item; } } /// public Object CommandSource { get { return _commandSource; } } } } // 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
- ExpressionsCollectionConverter.cs
- Parser.cs
- UIAgentRequest.cs
- RadioButtonBaseAdapter.cs
- UserNameSecurityToken.cs
- Operators.cs
- InOutArgumentConverter.cs
- Drawing.cs
- Hyperlink.cs
- MetadataUtil.cs
- ResourcePermissionBase.cs
- SiteMapProvider.cs
- ConfigurationException.cs
- SiteMapNodeItem.cs
- DataControlButton.cs
- _WebProxyDataBuilder.cs
- ConnectionsZoneDesigner.cs
- PropertyChange.cs
- DataControlCommands.cs
- DesignerObjectListAdapter.cs
- FtpCachePolicyElement.cs
- ShapeTypeface.cs
- HtmlButton.cs
- GPRECT.cs
- MailHeaderInfo.cs
- WebBrowser.cs
- UInt64Storage.cs
- TrackPointCollection.cs
- SpellerError.cs
- ToggleProviderWrapper.cs
- ListViewGroupItemCollection.cs
- GacUtil.cs
- Vector3DAnimationBase.cs
- SmtpFailedRecipientsException.cs
- TraceRecords.cs
- OuterGlowBitmapEffect.cs
- SafeBuffer.cs
- GridItem.cs
- OrderingQueryOperator.cs
- SerialReceived.cs
- InputScopeAttribute.cs
- SqlNodeAnnotation.cs
- ModuleBuilderData.cs
- HtmlEncodedRawTextWriter.cs
- OutKeywords.cs
- MsmqReceiveHelper.cs
- ChangeConflicts.cs
- StylusButton.cs
- RectIndependentAnimationStorage.cs
- QueryGenerator.cs
- UnaryOperationBinder.cs
- DiscoveryClientReferences.cs
- DecoratedNameAttribute.cs
- CqlBlock.cs
- DataGridPagingPage.cs
- BinaryFormatterSinks.cs
- EncoderExceptionFallback.cs
- ApplicationTrust.cs
- Compiler.cs
- SlotInfo.cs
- WebHttpElement.cs
- WebColorConverter.cs
- FileDialogCustomPlacesCollection.cs
- DocumentPaginator.cs
- HttpListenerRequest.cs
- SerialErrors.cs
- FileFormatException.cs
- StylusButtonCollection.cs
- XmlLoader.cs
- BaseDataBoundControl.cs
- CmsUtils.cs
- GlyphRunDrawing.cs
- DBParameter.cs
- ProfileGroupSettingsCollection.cs
- FormsAuthenticationConfiguration.cs
- WhitespaceRuleLookup.cs
- FileDocument.cs
- ImageListStreamer.cs
- DoubleLinkListEnumerator.cs
- ConstraintManager.cs
- XmlComplianceUtil.cs
- Polygon.cs
- Size.cs
- AncillaryOps.cs
- PropertyValueUIItem.cs
- PopupRoot.cs
- PageWrapper.cs
- ZoneLinkButton.cs
- CacheMode.cs
- DefaultBinder.cs
- MulticastOption.cs
- SqlDataSourceView.cs
- SqlFlattener.cs
- HtmlInputReset.cs
- ConfigXmlText.cs
- DynamicPropertyHolder.cs
- XmlCharCheckingReader.cs
- SystemIcons.cs
- InheritanceContextChangedEventManager.cs
- Dynamic.cs