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
- DocumentEventArgs.cs
- XmlElementAttributes.cs
- OperationExecutionFault.cs
- ProjectionCamera.cs
- PersonalizationStateInfo.cs
- CompilationRelaxations.cs
- ProfileEventArgs.cs
- CommandLibraryHelper.cs
- Parser.cs
- Style.cs
- Dump.cs
- DataError.cs
- DiagnosticTraceSource.cs
- BaseParser.cs
- WaitHandleCannotBeOpenedException.cs
- FixedDSBuilder.cs
- AtomServiceDocumentSerializer.cs
- ErrorCodes.cs
- TransformDescriptor.cs
- MediaElementAutomationPeer.cs
- PropertyGridEditorPart.cs
- PenThreadPool.cs
- WebRequestModulesSection.cs
- BaseCollection.cs
- BaseDataListPage.cs
- TransformCollection.cs
- LinqDataSource.cs
- PassportIdentity.cs
- TextProperties.cs
- Instrumentation.cs
- PageThemeBuildProvider.cs
- TickBar.cs
- _FtpControlStream.cs
- RemotingConfiguration.cs
- WebBrowserSiteBase.cs
- PathNode.cs
- NeutralResourcesLanguageAttribute.cs
- SoapObjectReader.cs
- UDPClient.cs
- CatalogZone.cs
- DelayedRegex.cs
- Int32EqualityComparer.cs
- EditorPart.cs
- AppManager.cs
- XmlHierarchicalEnumerable.cs
- CodeTypeMember.cs
- GenericTypeParameterBuilder.cs
- GifBitmapDecoder.cs
- COM2PropertyPageUITypeConverter.cs
- XmlMessageFormatter.cs
- InnerItemCollectionView.cs
- XmlSchemaInclude.cs
- processwaithandle.cs
- MediaTimeline.cs
- SessionIDManager.cs
- TypeSystemHelpers.cs
- ContainerUIElement3D.cs
- EntityCommandDefinition.cs
- GB18030Encoding.cs
- ObjectDataSourceSelectingEventArgs.cs
- MailAddress.cs
- SegmentInfo.cs
- RSAPKCS1SignatureFormatter.cs
- RelatedCurrencyManager.cs
- ColumnWidthChangingEvent.cs
- DynamicDataRouteHandler.cs
- HTMLTagNameToTypeMapper.cs
- WeakHashtable.cs
- DataShape.cs
- RelationshipFixer.cs
- HttpRuntimeSection.cs
- TokenBasedSet.cs
- documentsequencetextcontainer.cs
- CompilerGlobalScopeAttribute.cs
- EntitySqlQueryCacheEntry.cs
- HttpWebRequestElement.cs
- TreeNodeMouseHoverEvent.cs
- ElementNotEnabledException.cs
- LinkConverter.cs
- HandoffBehavior.cs
- Module.cs
- ApplicationGesture.cs
- SecurityTokenParametersEnumerable.cs
- StringCollectionMarkupSerializer.cs
- ToolStripRenderer.cs
- WorkflowPersistenceService.cs
- EventHandlerList.cs
- XmlMembersMapping.cs
- AsyncOperation.cs
- TextTreeRootTextBlock.cs
- Viewport3DAutomationPeer.cs
- ModelItem.cs
- TextSyndicationContentKindHelper.cs
- FlowLayoutPanel.cs
- GridViewRowPresenter.cs
- TableCellCollection.cs
- Point4DValueSerializer.cs
- ElementHostPropertyMap.cs
- TreeNodeCollection.cs
- DescendantBaseQuery.cs