AuthoringSink.EndParameters(TextSpan) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
EndParameter is called on the end of the paramters, ie. ")".
public:
virtual void EndParameters(Microsoft::VisualStudio::TextManager::Interop::TextSpan context);
public:
virtual void EndParameters(Microsoft::VisualStudio::TextManager::Interop::TextSpan context);
virtual void EndParameters(Microsoft::VisualStudio::TextManager::Interop::TextSpan context);
public virtual void EndParameters (Microsoft.VisualStudio.TextManager.Interop.TextSpan context);
abstract member EndParameters : Microsoft.VisualStudio.TextManager.Interop.TextSpan -> unit
override this.EndParameters : Microsoft.VisualStudio.TextManager.Interop.TextSpan -> unit
Public Overridable Sub EndParameters (context As TextSpan)
Parameters
- context
- 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.