ResourceCandidate Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
The type of ResourceCandidate being created.
- data
-
String
Platform::String
winrt::hstring
The value of the ResourceCandidate.