Share via


OrderByClauseSyntax.Update Method

Definition

Returns a copy of this with the specified changes. Returns this instance if there are no actual changes.

public:
 Microsoft::CodeAnalysis::VisualBasic::Syntax::OrderByClauseSyntax ^ Update(Microsoft::CodeAnalysis::SyntaxToken orderKeyword, Microsoft::CodeAnalysis::SyntaxToken byKeyword, Microsoft::CodeAnalysis::SeparatedSyntaxList<Microsoft::CodeAnalysis::VisualBasic::Syntax::OrderingSyntax ^> orderings);
public Microsoft.CodeAnalysis.VisualBasic.Syntax.OrderByClauseSyntax Update (Microsoft.CodeAnalysis.SyntaxToken orderKeyword, Microsoft.CodeAnalysis.SyntaxToken byKeyword, Microsoft.CodeAnalysis.SeparatedSyntaxList<Microsoft.CodeAnalysis.VisualBasic.Syntax.OrderingSyntax> orderings);
member this.Update : Microsoft.CodeAnalysis.SyntaxToken * Microsoft.CodeAnalysis.SyntaxToken * Microsoft.CodeAnalysis.SeparatedSyntaxList<Microsoft.CodeAnalysis.VisualBasic.Syntax.OrderingSyntax> -> Microsoft.CodeAnalysis.VisualBasic.Syntax.OrderByClauseSyntax
Public Function Update (orderKeyword As SyntaxToken, byKeyword As SyntaxToken, orderings As SeparatedSyntaxList(Of OrderingSyntax)) As OrderByClauseSyntax

Parameters

orderKeyword
SyntaxToken

The value for the OrderKeyword property.

byKeyword
SyntaxToken

The value for the ByKeyword property.

orderings
SeparatedSyntaxList<OrderingSyntax>

The value for the Orderings property.

Returns

Applies to