TestMetadataProperty Constructors

Definition

Overloads

Name Description
TestMetadataProperty(String)

Initializes a new instance of the TestMetadataProperty class with a key and an empty value.

TestMetadataProperty(String, String)

Initializes a new instance of the TestMetadataProperty class with a key and value.

TestMetadataProperty(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:
TestMetadataProperty.cs

Initializes a new instance of the TestMetadataProperty class with a key and an empty value.

public TestMetadataProperty(string key);
new Microsoft.Testing.Platform.Extensions.Messages.TestMetadataProperty : string -> Microsoft.Testing.Platform.Extensions.Messages.TestMetadataProperty
Public Sub New (key As String)

Parameters

key
String

The metadata key.

Applies to

TestMetadataProperty(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
Source:
TestNodeProperties.cs
Source:
TestNodeProperties.cs
Source:
TestNodeProperties.cs
Source:
TestMetadataProperty.cs

Initializes a new instance of the TestMetadataProperty class with a key and value.

public TestMetadataProperty(string Key, string Value);
public TestMetadataProperty(string key, string value);
new Microsoft.Testing.Platform.Extensions.Messages.TestMetadataProperty : string * string -> Microsoft.Testing.Platform.Extensions.Messages.TestMetadataProperty
new Microsoft.Testing.Platform.Extensions.Messages.TestMetadataProperty : string * string -> Microsoft.Testing.Platform.Extensions.Messages.TestMetadataProperty
Public Sub New (Key As String, Value As String)
Public Sub New (key As String, value As String)

Parameters

Keykey
String

The metadata key.

Valuevalue
String

The metadata value.

Applies to