Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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; } } } } // 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
- TailPinnedEventArgs.cs
- SeparatorAutomationPeer.cs
- SoapDocumentMethodAttribute.cs
- DataGridViewEditingControlShowingEventArgs.cs
- ControlBindingsCollection.cs
- InputGestureCollection.cs
- AccessDataSourceView.cs
- HighContrastHelper.cs
- TraceHandler.cs
- PrivateFontCollection.cs
- FileInfo.cs
- ConfigXmlComment.cs
- WorkingDirectoryEditor.cs
- ActiveXHelper.cs
- LinqDataSourceUpdateEventArgs.cs
- StringCollection.cs
- ExceptionValidationRule.cs
- HuffmanTree.cs
- InputLanguageManager.cs
- NoneExcludedImageIndexConverter.cs
- NumericExpr.cs
- VolatileResourceManager.cs
- TypeViewSchema.cs
- PermissionListSet.cs
- DataViewManagerListItemTypeDescriptor.cs
- XmlRootAttribute.cs
- AudioBase.cs
- HandleCollector.cs
- DataGridAddNewRow.cs
- PartBasedPackageProperties.cs
- ParseHttpDate.cs
- ResourceManager.cs
- CodeCatchClauseCollection.cs
- DefaultValueTypeConverter.cs
- ListViewInsertionMark.cs
- Latin1Encoding.cs
- EditorZoneAutoFormat.cs
- HtmlHistory.cs
- TemplateDefinition.cs
- SqlDataSourceFilteringEventArgs.cs
- BindingEditor.xaml.cs
- PolicyLevel.cs
- ReadOnlyDataSource.cs
- DesignerValidationSummaryAdapter.cs
- JoinGraph.cs
- Compiler.cs
- WindowsToolbarAsMenu.cs
- XmlUtil.cs
- DetailsViewDeleteEventArgs.cs
- FieldInfo.cs
- LineInfo.cs
- HostedHttpRequestAsyncResult.cs
- Logging.cs
- Attributes.cs
- CodeVariableReferenceExpression.cs
- DataTableNewRowEvent.cs
- RunWorkerCompletedEventArgs.cs
- MILUtilities.cs
- QueryPrefixOp.cs
- BasicAsyncResult.cs
- MessagePartSpecification.cs
- HttpUnhandledOperationInvoker.cs
- ModuleElement.cs
- ContentElement.cs
- InvalidWMPVersionException.cs
- DataGridViewRowCancelEventArgs.cs
- CodeSnippetExpression.cs
- FixedSOMLineCollection.cs
- SharedDp.cs
- ConstrainedDataObject.cs
- ResourceAssociationSet.cs
- _NTAuthentication.cs
- DATA_BLOB.cs
- TypeBinaryExpression.cs
- ArgumentDesigner.xaml.cs
- XmlSerializer.cs
- XamlHttpHandlerFactory.cs
- ListViewItem.cs
- DataGridViewCellStyleConverter.cs
- DocComment.cs
- Parallel.cs
- ValidatorCompatibilityHelper.cs
- DataGridViewCellValueEventArgs.cs
- InternalDispatchObject.cs
- TextClipboardData.cs
- MessageFormatterConverter.cs
- LabelLiteral.cs
- BasicHttpBinding.cs
- IndexedDataBuffer.cs
- RankException.cs
- DashStyle.cs
- RequiredAttributeAttribute.cs
- EpmContentDeSerializerBase.cs
- UIElementAutomationPeer.cs
- SharedUtils.cs
- InputQueueChannelAcceptor.cs
- MultiPartWriter.cs
- CalculatedColumn.cs
- KernelTypeValidation.cs
- ResourceBinder.cs