Share via


NavigateToNextIssueInDocumentCommandArgs Constructors

Definition

Overloads

NavigateToNextIssueInDocumentCommandArgs(ITextView, ITextBuffer)

Creates an instance of NavigateToNextIssueInDocumentCommandArgs with a list of error types.

NavigateToNextIssueInDocumentCommandArgs(ITextView, ITextBuffer, IEnumerable<String>)

Creates an instance of NavigateToNextIssueInDocumentCommandArgs with a list of error types.

NavigateToNextIssueInDocumentCommandArgs(ITextView, ITextBuffer)

Creates an instance of NavigateToNextIssueInDocumentCommandArgs with a list of error types.

public:
 NavigateToNextIssueInDocumentCommandArgs(Microsoft::VisualStudio::Text::Editor::ITextView ^ textView, Microsoft::VisualStudio::Text::ITextBuffer ^ subjectBuffer);
public NavigateToNextIssueInDocumentCommandArgs (Microsoft.VisualStudio.Text.Editor.ITextView textView, Microsoft.VisualStudio.Text.ITextBuffer subjectBuffer);
new Microsoft.VisualStudio.Text.Editor.Commanding.Commands.NavigateToNextIssueInDocumentCommandArgs : Microsoft.VisualStudio.Text.Editor.ITextView * Microsoft.VisualStudio.Text.ITextBuffer -> Microsoft.VisualStudio.Text.Editor.Commanding.Commands.NavigateToNextIssueInDocumentCommandArgs
Public Sub New (textView As ITextView, subjectBuffer As ITextBuffer)

Parameters

textView
ITextView

The ITextView upon which to invoke the command.

subjectBuffer
ITextBuffer

The ITextBuffer upon which to invoke the command.

Applies to

NavigateToNextIssueInDocumentCommandArgs(ITextView, ITextBuffer, IEnumerable<String>)

Creates an instance of NavigateToNextIssueInDocumentCommandArgs with a list of error types.

public:
 NavigateToNextIssueInDocumentCommandArgs(Microsoft::VisualStudio::Text::Editor::ITextView ^ textView, Microsoft::VisualStudio::Text::ITextBuffer ^ subjectBuffer, System::Collections::Generic::IEnumerable<System::String ^> ^ errorTypeNames);
public NavigateToNextIssueInDocumentCommandArgs (Microsoft.VisualStudio.Text.Editor.ITextView textView, Microsoft.VisualStudio.Text.ITextBuffer subjectBuffer, System.Collections.Generic.IEnumerable<string> errorTypeNames);
new Microsoft.VisualStudio.Text.Editor.Commanding.Commands.NavigateToNextIssueInDocumentCommandArgs : Microsoft.VisualStudio.Text.Editor.ITextView * Microsoft.VisualStudio.Text.ITextBuffer * seq<string> -> Microsoft.VisualStudio.Text.Editor.Commanding.Commands.NavigateToNextIssueInDocumentCommandArgs
Public Sub New (textView As ITextView, subjectBuffer As ITextBuffer, errorTypeNames As IEnumerable(Of String))

Parameters

textView
ITextView

The ITextView upon which to invoke the command.

subjectBuffer
ITextBuffer

The ITextBuffer upon which to invoke the command.

errorTypeNames
IEnumerable<String>

A list of error type names to include.

Remarks

errorTypeNames defaults to the set of all defined error types if not specified.

Applies to