Hd.QueryExtensions.OrderByTermCollection.Remove C# (CSharp) Method

Remove() public method

Removes the first occurrence of a specific OrderByTerm from this OrderByTermCollection.
public Remove ( OrderByTerm value ) : void
value OrderByTerm /// The OrderByTerm value to remove from this OrderByTermCollection. ///
return void
		public virtual void Remove(OrderByTerm value)
		{
			List.Remove(value);
		}