TestMethodIdentifierProperty Constructors

Definition

Overloads

TestMethodIdentifierProperty(String, String, String, String, String[], String)

Source:
TestNodeProperties.cs
Source:
TestNodeProperties.cs
Source:
TestNodeProperties.cs
Source:
TestNodeProperties.cs
Source:
TestNodeProperties.cs
Source:
TestNodeProperties.cs
Source:
TestNodeProperties.cs
Source:
TestNodeProperties.cs
Source:
TestNodeProperties.cs
Source:
TestNodeProperties.cs

Caution

Use the overload with method arity instead.

Initializes a new instance of the TestMethodIdentifierProperty class.

public TestMethodIdentifierProperty(string AssemblyFullName, string Namespace, string TypeName, string MethodName, string[] ParameterTypeFullNames, string ReturnTypeFullName);
[System.Obsolete("Use the overload with method arity instead.")]
public TestMethodIdentifierProperty(string AssemblyFullName, string Namespace, string TypeName, string MethodName, string[] ParameterTypeFullNames, string ReturnTypeFullName);
new Microsoft.Testing.Platform.Extensions.Messages.TestMethodIdentifierProperty : string * string * string * string * string[] * string -> Microsoft.Testing.Platform.Extensions.Messages.TestMethodIdentifierProperty
[<System.Obsolete("Use the overload with method arity instead.")>]
new Microsoft.Testing.Platform.Extensions.Messages.TestMethodIdentifierProperty : string * string * string * string * string[] * string -> Microsoft.Testing.Platform.Extensions.Messages.TestMethodIdentifierProperty
Public Sub New (AssemblyFullName As String, Namespace As String, TypeName As String, MethodName As String, ParameterTypeFullNames As String(), ReturnTypeFullName As String)

Parameters

AssemblyFullName
String

Assembly full name.

Namespace
String

Namespace.

TypeName
String

Type name in metadata format, not including the namespace. Generics are represented by backtick followed by arity. Nested types are represented by +.

MethodName
String

Method name in metadata format.

ParameterTypeFullNames
String[]

Parameter type full names in metadata format.

ReturnTypeFullName
String

Return type full name in metadata format.

Attributes

Applies to

TestMethodIdentifierProperty(String, String, String, String, Int32, String[], String)

Source:
TestNodeProperties.cs
Source:
TestNodeProperties.cs
Source:
TestNodeProperties.cs
Source:
TestNodeProperties.cs
Source:
TestNodeProperties.cs
Source:
TestNodeProperties.cs
Source:
TestMethodIdentifierProperty.cs

Initializes a new instance of the TestMethodIdentifierProperty class.

public TestMethodIdentifierProperty(string AssemblyFullName, string Namespace, string TypeName, string MethodName, int MethodArity, string[] ParameterTypeFullNames, string ReturnTypeFullName);
public TestMethodIdentifierProperty(string assemblyFullName, string namespace, string typeName, string methodName, int methodArity, string[] parameterTypeFullNames, string returnTypeFullName);
new Microsoft.Testing.Platform.Extensions.Messages.TestMethodIdentifierProperty : string * string * string * string * int * string[] * string -> Microsoft.Testing.Platform.Extensions.Messages.TestMethodIdentifierProperty
new Microsoft.Testing.Platform.Extensions.Messages.TestMethodIdentifierProperty : string * string * string * string * int * string[] * string -> Microsoft.Testing.Platform.Extensions.Messages.TestMethodIdentifierProperty
Public Sub New (AssemblyFullName As String, Namespace As String, TypeName As String, MethodName As String, MethodArity As Integer, ParameterTypeFullNames As String(), ReturnTypeFullName As String)
Public Sub New (assemblyFullName As String, namespace As String, typeName As String, methodName As String, methodArity As Integer, parameterTypeFullNames As String(), returnTypeFullName As String)

Parameters

AssemblyFullNameassemblyFullName
String

Assembly full name.

Namespacenamespace
String

Namespace.

TypeNametypeName
String

Type name in metadata format, not including the namespace. Generics are represented by backtick followed by arity. Nested types are represented by +.

MethodNamemethodName
String

Method name in metadata format. This is simply the method name, it doesn't include backtick followed by arity.

MethodAritymethodArity
Int32

The number of generic parameters of the method.

ParameterTypeFullNamesparameterTypeFullNames
String[]

Parameter type full names in metadata format.

ReturnTypeFullNamereturnTypeFullName
String

Return type full name in metadata format.

Applies to