NavigateTo() static private method

static private NavigateTo ( IServiceProvider serviceProvider, string filename, System.Guid docViewGuidType, int pos ) : void
serviceProvider IServiceProvider
filename string
docViewGuidType System.Guid
pos int
return void
Example #1
0
 protected override void OnNavigate(EventArgs e)
 {
     VsUtilities.NavigateTo(
         _serviceProvider,
         Document,
         Guid.Empty,
         Line,
         Column - 1
         );
     base.OnNavigate(e);
 }
Example #2
0
 protected override void OnNavigate(EventArgs e)
 {
     ThreadHelper.ThrowIfNotOnUIThread();
     VsUtilities.NavigateTo(
         _serviceProvider,
         Document,
         Guid.Empty,
         Line,
         Column - 1
         );
     base.OnNavigate(e);
 }