Share via


YieldStatementSyntax.Update(SyntaxToken, ExpressionSyntax) 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::YieldStatementSyntax ^ Update(Microsoft::CodeAnalysis::SyntaxToken yieldKeyword, Microsoft::CodeAnalysis::VisualBasic::Syntax::ExpressionSyntax ^ expression);
public Microsoft.CodeAnalysis.VisualBasic.Syntax.YieldStatementSyntax Update (Microsoft.CodeAnalysis.SyntaxToken yieldKeyword, Microsoft.CodeAnalysis.VisualBasic.Syntax.ExpressionSyntax expression);
member this.Update : Microsoft.CodeAnalysis.SyntaxToken * Microsoft.CodeAnalysis.VisualBasic.Syntax.ExpressionSyntax -> Microsoft.CodeAnalysis.VisualBasic.Syntax.YieldStatementSyntax
Public Function Update (yieldKeyword As SyntaxToken, expression As ExpressionSyntax) As YieldStatementSyntax

Parameters

yieldKeyword
SyntaxToken

The value for the YieldKeyword property.

expression
ExpressionSyntax

The value for the Expression property.

Returns

Applies to