You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Gets fully qualified managed type and method name from given <see href="MethodBase" /> instance.
54
+
/// </summary>
55
+
/// <param name="method">
56
+
/// A <see cref="MethodBase" /> instance to get fully qualified managed type and method name.
57
+
/// </param>
58
+
/// <param name="managedTypeName">
59
+
/// When this method returns, contains the fully qualified managed type name of the <paramref name="method"/>.
60
+
/// This parameter is passed uninitialized; any value originally supplied in result will be overwritten.
61
+
/// The format is defined in <see href="https://github.com/microsoft/vstest-docs/blob/master/RFCs/0017-Managed-TestCase-Properties.md#managedtype-property">the RFC</see>.
62
+
/// </param>
63
+
/// <param name="managedMethodName">
64
+
/// When this method returns, contains the fully qualified managed method name of the <paramref name="method"/>.
65
+
/// This parameter is passed uninitialized; any value originally supplied in result will be overwritten.
66
+
/// The format is defined in <see href="https://github.com/microsoft/vstest-docs/blob/master/RFCs/0017-Managed-TestCase-Properties.md#managedmethod-property">the RFC</see>.
67
+
/// </param>
68
+
/// <param name="hierarchyValues">
69
+
/// When this method returns, contains the default test hierarchy values of the <paramref name="method"/>.
70
+
/// This parameter is passed uninitialized; any value originally supplied in result will be overwritten.
71
+
/// </param>
72
+
/// <exception cref="ArgumentNullException">
73
+
/// <paramref name="method"/> is null.
74
+
/// </exception>
75
+
/// <exception cref="NotSupportedException">
76
+
/// <paramref name="method"/> must describe a method.
77
+
/// </exception>
78
+
/// <exception cref="NotImplementedException">
79
+
/// Required functionality on <paramref name="method"/> is missing on the current platform.
80
+
/// </exception>
81
+
/// <remarks>
82
+
/// More information about <paramref name="managedTypeName"/> and <paramref name="managedMethodName"/> can be found in
0 commit comments