Candor.SortOption.SortOption C# (CSharp) Method

SortOption() public method

Creates a new instance of a SortOption.
public SortOption ( string propertyName, short direction ) : System
propertyName string The name of the property to sort by.
direction short The direction of the sort.
return System
        public SortOption( string propertyName, short direction )
        {
            propertyName_ = propertyName;
            direction_ = direction;
        }
SortOption