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
- DataGridViewCellParsingEventArgs.cs
- ScriptDescriptor.cs
- ManualResetEvent.cs
- EpmContentDeSerializerBase.cs
- CodeTypeReferenceExpression.cs
- TransformerInfoCollection.cs
- QueryExecutionOption.cs
- RefType.cs
- MethodImplAttribute.cs
- FixedDocumentPaginator.cs
- ModelVisual3D.cs
- ObjectKeyFrameCollection.cs
- XmlWellformedWriter.cs
- TextEndOfSegment.cs
- StorageEndPropertyMapping.cs
- GraphicsContext.cs
- CheckBoxStandardAdapter.cs
- CultureSpecificCharacterBufferRange.cs
- RootBuilder.cs
- GenerateTemporaryAssemblyTask.cs
- LineServices.cs
- SqlGatherProducedAliases.cs
- ItemChangedEventArgs.cs
- CmsInterop.cs
- EventMappingSettingsCollection.cs
- TypeExtension.cs
- BooleanToSelectiveScrollingOrientationConverter.cs
- ClientTargetCollection.cs
- CodeMethodReturnStatement.cs
- NotConverter.cs
- Solver.cs
- BuildProviderUtils.cs
- TranslateTransform3D.cs
- PrintDialog.cs
- PassportAuthentication.cs
- ShaperBuffers.cs
- GC.cs
- ControlBuilder.cs
- XamlVector3DCollectionSerializer.cs
- AssemblyEvidenceFactory.cs
- ClosableStream.cs
- ProfileServiceManager.cs
- PageThemeParser.cs
- Interlocked.cs
- TextContainerChangeEventArgs.cs
- EventEntry.cs
- IdentityHolder.cs
- SqlInternalConnectionSmi.cs
- DataGridViewComboBoxEditingControl.cs
- ZoneButton.cs
- DiagnosticTraceSource.cs
- MetadataCache.cs
- HwndMouseInputProvider.cs
- RuntimeArgumentHandle.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- TextTrailingCharacterEllipsis.cs
- DeferredReference.cs
- TabControlAutomationPeer.cs
- JournalNavigationScope.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- IdentityNotMappedException.cs
- TagNameToTypeMapper.cs
- Visual3D.cs
- ExpressionBuilder.cs
- XmlSchemaObject.cs
- ListViewHitTestInfo.cs
- ParsedAttributeCollection.cs
- ShadowGlyph.cs
- OrthographicCamera.cs
- SamlConditions.cs
- CodeActivityContext.cs
- Span.cs
- WebPartMovingEventArgs.cs
- StateManager.cs
- FormConverter.cs
- GregorianCalendar.cs
- MessageFilterException.cs
- SqlMethodCallConverter.cs
- AutomationPropertyInfo.cs
- WebPartDisplayModeCancelEventArgs.cs
- CodeCompiler.cs
- SplineKeyFrames.cs
- BitmapEffectGeneralTransform.cs
- CqlLexer.cs
- ProxyWebPartConnectionCollection.cs
- BaseDataBoundControl.cs
- XhtmlBasicPanelAdapter.cs
- CharacterString.cs
- TextReader.cs
- RouteValueDictionary.cs
- FontFamily.cs
- RtfFormatStack.cs
- DataGridTextBoxColumn.cs
- XmlStringTable.cs
- Permission.cs
- BufferBuilder.cs
- ListViewDeletedEventArgs.cs
- XmlSchemaAnyAttribute.cs
- _TimerThread.cs
- InteropAutomationProvider.cs