AuthoringSink::EndParameters Method (TextSpan)

 

Called to indicate the end of a method's parameter list.

Namespace:   Microsoft.VisualStudio.Package
Assembly:  Microsoft.VisualStudio.Package.LanguageService.14.0 (in Microsoft.VisualStudio.Package.LanguageService.14.0.dll)

public:
virtual void EndParameters(
	TextSpan context
)

Parameters

context
Type: Microsoft.VisualStudio.TextManager.Interop::TextSpan

[in] A TextSpan object indicating the span of character or characters that denote the end of the parameter list.

If the MethodParameters property returns true, this method is called after the last parameter of a method's parameter list is parsed. For example, in C#, EndParameters would be called if a ")" is encountered after a method name.

The base method validates the given TextSpan object then marks the method's parameter list as complete in the internal list.

Return to top
Show: