Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / GridViewSortEventArgs.cs / 1 / GridViewSortEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class GridViewSortEventArgs : CancelEventArgs { private string _sortExpression; private SortDirection _sortDirection; ///Provides data for the ///event of a . /// /// public GridViewSortEventArgs(string sortExpression, SortDirection sortDirection) { this._sortExpression = sortExpression; this._sortDirection = sortDirection; } ///Initializes a new instance of the ///class. /// public SortDirection SortDirection { get { return _sortDirection; } set { _sortDirection = value; } } ///Gets the direction used to sort. ////// public string SortExpression { get { return _sortExpression; } set { _sortExpression = value; } } } }Gets the expression used to sort. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebPartZoneDesigner.cs
- ErrorHandler.cs
- OrderedDictionaryStateHelper.cs
- PerformanceCounterPermission.cs
- ExceptionUtility.cs
- Compiler.cs
- ScrollChangedEventArgs.cs
- FamilyMapCollection.cs
- SystemUnicastIPAddressInformation.cs
- baseaxisquery.cs
- DataSourceCacheDurationConverter.cs
- dataprotectionpermissionattribute.cs
- embossbitmapeffect.cs
- AtomicFile.cs
- Operators.cs
- SafeUserTokenHandle.cs
- XLinq.cs
- wgx_sdk_version.cs
- SweepDirectionValidation.cs
- DynamicValueConverter.cs
- ListBoxItemWrapperAutomationPeer.cs
- ReadOnlyKeyedCollection.cs
- TemplateParser.cs
- WebReferencesBuildProvider.cs
- RawStylusInput.cs
- safePerfProviderHandle.cs
- WithParamAction.cs
- ServiceOperationListItemList.cs
- GestureRecognitionResult.cs
- FilteredSchemaElementLookUpTable.cs
- ImpersonateTokenRef.cs
- TypedDataSetSchemaImporterExtension.cs
- DataListItem.cs
- ControlBindingsCollection.cs
- ProfileModule.cs
- ObjectContext.cs
- CodeDOMProvider.cs
- WebConfigurationHost.cs
- XslException.cs
- SocketException.cs
- EmptyQuery.cs
- ButtonFieldBase.cs
- xml.cs
- ObfuscateAssemblyAttribute.cs
- ProjectionPruner.cs
- FlowNode.cs
- OleDbError.cs
- TemplateBaseAction.cs
- TypefaceMap.cs
- DataGridViewSelectedRowCollection.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- HttpDictionary.cs
- CodeBinaryOperatorExpression.cs
- XhtmlStyleClass.cs
- NavigatorOutput.cs
- SystemResourceHost.cs
- GeneratedContractType.cs
- CacheMemory.cs
- PieceNameHelper.cs
- DataFieldEditor.cs
- CheckBox.cs
- IPAddressCollection.cs
- RtfControls.cs
- SharedPersonalizationStateInfo.cs
- WindowsImpersonationContext.cs
- AttachedProperty.cs
- XmlQueryCardinality.cs
- PlaceHolder.cs
- LogExtent.cs
- MergablePropertyAttribute.cs
- MonitorWrapper.cs
- ComEventsMethod.cs
- SevenBitStream.cs
- OraclePermissionAttribute.cs
- AuthenticatingEventArgs.cs
- NameNode.cs
- ScrollChrome.cs
- Positioning.cs
- WebBrowser.cs
- XmlAnyElementAttributes.cs
- UTF8Encoding.cs
- TcpStreams.cs
- BamlCollectionHolder.cs
- ApplicationManager.cs
- BuildProvidersCompiler.cs
- COM2ExtendedTypeConverter.cs
- MessageHeaders.cs
- IntellisenseTextBox.cs
- IListConverters.cs
- BuildManagerHost.cs
- PropertyPathConverter.cs
- FactoryId.cs
- TableCellAutomationPeer.cs
- WebPartMenu.cs
- ExpandSegment.cs
- DataStorage.cs
- ChineseLunisolarCalendar.cs
- UrlMappingsModule.cs
- TrustManagerMoreInformation.cs
- ToolStripManager.cs