NavigateToNextIssueInDocumentCommandArgs Constructors
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.
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
- 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
- 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.