TwinState(TwinCollection, TwinCollection) Constructor
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.
CONSTRUCTOR
public TwinState (Microsoft.Azure.Devices.Shared.TwinCollection tags, Microsoft.Azure.Devices.Shared.TwinCollection desiredProperties);
new Microsoft.Azure.Devices.Provisioning.Service.TwinState : Microsoft.Azure.Devices.Shared.TwinCollection * Microsoft.Azure.Devices.Shared.TwinCollection -> Microsoft.Azure.Devices.Provisioning.Service.TwinState
Public Sub New (tags As TwinCollection, desiredProperties As TwinCollection)
Parameters
- tags
- TwinCollection
the TwinCollection with the initial tags state. It can be null
.
- desiredProperties
- TwinCollection
the TwinCollection with the initial desired properties. It can be null
.
Examples
When serialized, this class will looks like the following example:
{
"initialTwin": {
"tags":{
"SpeedUnity":"MPH",
"$version":4
}
"properties":{
"desired":{
"MaxSpeed":{
"Value":500,
"NewValue":300
},
"$version":4
}
}
}
}
Remarks
This constructor creates an instance of the TwinState with the provided TwinCollection tags and desired properties.
Applies to
Współpracuj z nami w serwisie GitHub
Źródło tej zawartości można znaleźć w witrynie GitHub, gdzie można również tworzyć i przeglądać problemy i żądania ściągnięcia. Więcej informacji znajdziesz w naszym przewodniku dla współtwórców.
Azure SDK for .NET