Code:
/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / ndp / fx / src / xsp / System / Web / Extensions / ui / webcontrols / ListViewSortEventArgs.cs / 1 / ListViewSortEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections.Specialized; using System.ComponentModel; namespace System.Web.UI.WebControls { [AspNetHostingPermission(System.Security.Permissions.SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ListViewSortEventArgs : CancelEventArgs { private string _sortExpression; private SortDirection _sortDirection; public ListViewSortEventArgs(string sortExpression, SortDirection sortDirection) : base(false) { this._sortExpression = sortExpression; this._sortDirection = sortDirection; } ////// public SortDirection SortDirection { get { return _sortDirection; } set { _sortDirection = value; } } ///Gets the direction used to sort. ////// public string SortExpression { get { return _sortExpression; } set { _sortExpression = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Gets the expression used to sort. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SoapElementAttribute.cs
- TextEditorSelection.cs
- LinqDataSourceDisposeEventArgs.cs
- Container.cs
- sitestring.cs
- AnnotationAdorner.cs
- Margins.cs
- DataGridViewRow.cs
- Win32SafeHandles.cs
- ProgressBar.cs
- EnvironmentPermission.cs
- TypedDatasetGenerator.cs
- _ConnectStream.cs
- ResXFileRef.cs
- DoubleIndependentAnimationStorage.cs
- InputGestureCollection.cs
- XPathAncestorQuery.cs
- EditorPart.cs
- TraceListener.cs
- AspNetHostingPermission.cs
- _BasicClient.cs
- LayoutUtils.cs
- DispatcherEventArgs.cs
- ForEach.cs
- UriWriter.cs
- TypeForwardedToAttribute.cs
- ItemAutomationPeer.cs
- InstanceOwnerQueryResult.cs
- LinkConverter.cs
- ObjectSet.cs
- OletxTransactionManager.cs
- DetailsViewDeleteEventArgs.cs
- TypeToken.cs
- AppearanceEditorPart.cs
- Permission.cs
- InkCanvasSelectionAdorner.cs
- InteropDesigner.xaml.cs
- HttpModuleCollection.cs
- FileDialog_Vista_Interop.cs
- TextBox.cs
- ObjectSpanRewriter.cs
- PenLineJoinValidation.cs
- CalendarItem.cs
- ProviderCollection.cs
- CompensationTokenData.cs
- WindowsListViewItemCheckBox.cs
- UniqueEventHelper.cs
- ConnectionsZone.cs
- DataPagerFieldCommandEventArgs.cs
- OracleNumber.cs
- KeyValuePairs.cs
- AttributeCollection.cs
- WindowInteractionStateTracker.cs
- AnnotationResource.cs
- LinearKeyFrames.cs
- InOutArgumentConverter.cs
- HttpHandlerAction.cs
- Misc.cs
- HtmlControlPersistable.cs
- PolicyValidationException.cs
- Function.cs
- MeshGeometry3D.cs
- EventData.cs
- ExpressionNode.cs
- TextTrailingCharacterEllipsis.cs
- LabelLiteral.cs
- GridItemCollection.cs
- InstanceDataCollectionCollection.cs
- TextEditorCopyPaste.cs
- TableCell.cs
- XmlName.cs
- HyperLink.cs
- ScriptingWebServicesSectionGroup.cs
- SyndicationSerializer.cs
- QilDataSource.cs
- PageCache.cs
- TypeSystemHelpers.cs
- InvokeHandlers.cs
- JsonObjectDataContract.cs
- AuthenticatedStream.cs
- InfoCardKeyedHashAlgorithm.cs
- ProcessingInstructionAction.cs
- FtpWebResponse.cs
- TdsParserStaticMethods.cs
- KeyInterop.cs
- DefaultTraceListener.cs
- OutputScopeManager.cs
- DataServiceHost.cs
- QilTypeChecker.cs
- DataStreams.cs
- DataGridPageChangedEventArgs.cs
- Drawing.cs
- WsatServiceCertificate.cs
- PeerNameRecord.cs
- ProxyFragment.cs
- ForEachAction.cs
- RelatedView.cs
- TemplatedControlDesigner.cs
- ParallelDesigner.cs
- ReferenceEqualityComparer.cs