Share via


NavigateToPreviousIssueInDocumentCommandArgs Constructors

Definition

Overloads

NavigateToPreviousIssueInDocumentCommandArgs(ITextView, ITextBuffer)

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

NavigateToPreviousIssueInDocumentCommandArgs(ITextView, ITextBuffer, IEnumerable<String>)

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

NavigateToPreviousIssueInDocumentCommandArgs(ITextView, ITextBuffer)

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

public:
 NavigateToPreviousIssueInDocumentCommandArgs(Microsoft::VisualStudio::Text::Editor::ITextView ^ textView, Microsoft::VisualStudio::Text::ITextBuffer ^ subjectBuffer);
public NavigateToPreviousIssueInDocumentCommandArgs (Microsoft.VisualStudio.Text.Editor.ITextView textView, Microsoft.VisualStudio.Text.ITextBuffer subjectBuffer);
new Microsoft.VisualStudio.Text.Editor.Commanding.Commands.NavigateToPreviousIssueInDocumentCommandArgs : Microsoft.VisualStudio.Text.Editor.ITextView * Microsoft.VisualStudio.Text.ITextBuffer -> Microsoft.VisualStudio.Text.Editor.Commanding.Commands.NavigateToPreviousIssueInDocumentCommandArgs
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

NavigateToPreviousIssueInDocumentCommandArgs(ITextView, ITextBuffer, IEnumerable<String>)

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

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

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