InstanceValueOptions 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.
Contains options for instance values to indicate whether the instance values are write-only, optional, there are no instance values.
This enumeration supports a bitwise combination of its member values.
public enum class InstanceValueOptions
[System.Flags]
public enum InstanceValueOptions
[System.Flags]
[System.Runtime.Serialization.DataContract]
public enum InstanceValueOptions
[<System.Flags>]
type InstanceValueOptions =
[<System.Flags>]
[<System.Runtime.Serialization.DataContract>]
type InstanceValueOptions =
Public Enum InstanceValueOptions
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Indicates that there are no instance values. |
Optional | 1 | Indicates that a host can function without knowing the value of this instance value. |
WriteOnly | 2 | Indicates that the instance value is write-only. The instance value can be used for administration purposes. |