Share via


ResourceCandidate Constructors

Definition

Overloads

ResourceCandidate(Byte[])

Creates an instance of the ResourceCandidate class with the specified value.

ResourceCandidate(ResourceCandidateKind, String)

Creates an instance of the ResourceCandidate class with the specified value.

ResourceCandidate(Byte[])

Creates an instance of the ResourceCandidate class with the specified value.

public:
 ResourceCandidate(Platform::Array <byte> ^ data);
 ResourceCandidate(winrt::array_view <byte> const& data);
public ResourceCandidate(byte[] data);
function ResourceCandidate(data)
Public Sub New (data As Byte())

Parameters

data

Byte[]

byte[]

The value for this ResourceCandidate represented as a bytes.

Applies to

ResourceCandidate(ResourceCandidateKind, String)

Creates an instance of the ResourceCandidate class with the specified value.

public:
 ResourceCandidate(ResourceCandidateKind kind, Platform::String ^ data);
 ResourceCandidate(ResourceCandidateKind const& kind, winrt::hstring const& data);
public ResourceCandidate(ResourceCandidateKind kind, string data);
function ResourceCandidate(kind, data)
Public Sub New (kind As ResourceCandidateKind, data As String)

Parameters

kind
ResourceCandidateKind

The type of ResourceCandidate being created.

data
String

Platform::String

winrt::hstring

The value of the ResourceCandidate.

Applies to