AuthoringSink.NextParameter(TextSpan) Method

Definition

NextParameter is called after StartParameters on the start of each new parameter, ie. ",".

public:
 virtual void NextParameter(Microsoft::VisualStudio::TextManager::Interop::TextSpan context);
public:
 virtual void NextParameter(Microsoft::VisualStudio::TextManager::Interop::TextSpan context);
 virtual void NextParameter(Microsoft::VisualStudio::TextManager::Interop::TextSpan context);
public virtual void NextParameter (Microsoft.VisualStudio.TextManager.Interop.TextSpan context);
abstract member NextParameter : Microsoft.VisualStudio.TextManager.Interop.TextSpan -> unit
override this.NextParameter : Microsoft.VisualStudio.TextManager.Interop.TextSpan -> unit
Public Overridable Sub NextParameter (context As TextSpan)

Parameters

context
TextSpan

[in] A TextSpan object indicating the parameter separator character.

Remarks

If the MethodParameters property returns true, this method is called to indicate the end of one parameter and the start of another. For example, in C#, this method would be called if a "," is encountered while parsing a method parameter list.

The base method validates the given TextSpan object and then increments the number of parameters parsed so far.

Applies to