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
- HashHelper.cs
- _Win32.cs
- DialogWindow.cs
- WeakReferenceEnumerator.cs
- ViewBox.cs
- TimeSpanValidatorAttribute.cs
- Util.cs
- StandardOleMarshalObject.cs
- AttachedPropertyBrowsableAttribute.cs
- TransformerInfoCollection.cs
- ByteStream.cs
- MetadataArtifactLoaderFile.cs
- CompilerResults.cs
- ShapingWorkspace.cs
- StreamGeometryContext.cs
- XmlUnspecifiedAttribute.cs
- ApplicationGesture.cs
- TdsParserStateObject.cs
- SkipStoryboardToFill.cs
- sqlinternaltransaction.cs
- DecimalMinMaxAggregationOperator.cs
- HttpHandlerAction.cs
- ToolStripMenuItemDesigner.cs
- EncoderFallback.cs
- DataBinder.cs
- RegexWriter.cs
- DispatcherEventArgs.cs
- BulletedList.cs
- XhtmlBasicTextViewAdapter.cs
- Automation.cs
- ModelPropertyImpl.cs
- SizeKeyFrameCollection.cs
- File.cs
- DataGridViewCellLinkedList.cs
- EnumerableValidator.cs
- BinaryUtilClasses.cs
- NavigationEventArgs.cs
- RecipientServiceModelSecurityTokenRequirement.cs
- SoapIncludeAttribute.cs
- CollaborationHelperFunctions.cs
- ClientScriptItemCollection.cs
- WebPartVerbCollection.cs
- XPathAncestorQuery.cs
- ListViewItem.cs
- BamlResourceSerializer.cs
- WriteStateInfoBase.cs
- MenuAutomationPeer.cs
- x509store.cs
- ConnectionManagementElement.cs
- RemotingConfigParser.cs
- DesignParameter.cs
- ReadOnlyDataSourceView.cs
- StorageAssociationTypeMapping.cs
- QueryContinueDragEvent.cs
- ZipFileInfo.cs
- SqlBooleanMismatchVisitor.cs
- FillRuleValidation.cs
- UpdateCompiler.cs
- StyleSelector.cs
- Convert.cs
- CompiledRegexRunnerFactory.cs
- TraceFilter.cs
- ToolStripPanelSelectionGlyph.cs
- PagedDataSource.cs
- Single.cs
- RegexStringValidator.cs
- WebPartUserCapability.cs
- XmlSignatureProperties.cs
- PauseStoryboard.cs
- HostedElements.cs
- ConnectorSelectionGlyph.cs
- XmlAnyElementAttribute.cs
- XhtmlBasicFormAdapter.cs
- JournalEntryListConverter.cs
- ToolStripDesignerAvailabilityAttribute.cs
- TableDetailsRow.cs
- GetImportedCardRequest.cs
- InvalidAsynchronousStateException.cs
- SecurityStateEncoder.cs
- ButtonStandardAdapter.cs
- StringFreezingAttribute.cs
- EditorPartCollection.cs
- SystemWebSectionGroup.cs
- WebServiceFaultDesigner.cs
- ClientBuildManager.cs
- Thickness.cs
- RouteTable.cs
- OptionUsage.cs
- Knowncolors.cs
- SemanticAnalyzer.cs
- XmlSchemaAnnotated.cs
- CompModSwitches.cs
- SourceItem.cs
- NamedPipeAppDomainProtocolHandler.cs
- Validator.cs
- HttpCookieCollection.cs
- ReadOnlyHierarchicalDataSource.cs
- IdentityReference.cs
- AnonymousIdentificationModule.cs
- Point3DAnimationBase.cs