AuthoringSink.EndParameters Method
Called to indicate the end of a method's parameter list.
Namespace: Microsoft.VisualStudio.Package
Assemblies: Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)
Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
Microsoft.VisualStudio.Package.LanguageService.11.0 (in Microsoft.VisualStudio.Package.LanguageService.11.0.dll)
Microsoft.VisualStudio.Package.LanguageService.10.0 (in Microsoft.VisualStudio.Package.LanguageService.10.0.dll)
Syntax
'Декларация
Public Overridable Sub EndParameters ( _
context As TextSpan _
)
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.
Remarks
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.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.