| File: Navigation\INavigationSession.cs | Web Access |
| Project: src\vstest\src\Microsoft.TestPlatform.ObjectModel\Microsoft.TestPlatform.ObjectModel.csproj (Microsoft.VisualStudio.TestPlatform.ObjectModel) |
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; namespace Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation; /// <summary> /// Manages the debug data associated with the .exe/.dll file /// </summary> public interface INavigationSession : IDisposable { /// <summary> /// Gets the navigation data for a method. /// </summary> /// <param name="declaringTypeName"> The declaring type name. </param> /// <param name="methodName"> The method name. </param> /// <returns> The <see cref="INavigationData"/> to get to the method. </returns> INavigationData? GetNavigationDataForMethod(string declaringTypeName, string methodName); }