ResourceCandidateKind Enum
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.
Defines values that represent the type of resource that is encapsulated in a ResourceCandidate.
public enum class ResourceCandidateKind
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.ApplicationModel.Resources.MrtContract, 65536)]
enum class ResourceCandidateKind
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.ApplicationModel.Resources.MrtContract), 65536)]
public enum ResourceCandidateKind
var value = Microsoft.ApplicationModel.Resources.ResourceCandidateKind.unknown
Public Enum ResourceCandidateKind
- Inheritance
-
ResourceCandidateKind
- Attributes
Fields
Name | Value | Description |
---|---|---|
Unknown | 0 | The ResourceCandidate contains a value with an unknown type. |
String | 1 | The resource is a string. |
FilePath | 2 | The resource is a file located at the specified location. |
EmbeddedData | 3 | The resource is embedded data in some containing resource file (such as a .resw file). |
Remarks
Note that the enum values are different than those in Windows.ApplicationModel.Resources.Core.ResourceCandidateKind.