Class DeviceNFT
NFT for description of common device which can be for example some electronic device
Inheritance
System.Object
DeviceNFT
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: VEDriversLite.dll
Syntax
public class DeviceNFT : CommonNFT, INFT
Constructors
|
Improve this Doc
View Source
DeviceNFT(String)
Declaration
public DeviceNFT(string utxo)
Parameters
Type |
Name |
Description |
System.String |
utxo |
|
Properties
|
Improve this Doc
View Source
FwSourceNFT
Declaration
[JsonIgnore]
public INFT FwSourceNFT { get; set; }
Property Value
|
Improve this Doc
View Source
FWSrcNFTHash
FW source NFT. Should lead to source of the firmware
Declaration
public string FWSrcNFTHash { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
HwSourceNFT
Declaration
[JsonIgnore]
public INFT HwSourceNFT { get; set; }
Property Value
|
Improve this Doc
View Source
HWSrcNFTHash
HW source NFT. Should lead to source of the hardware design
Declaration
public string HWSrcNFTHash { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
LoadedProtocolNFT
Declaration
[JsonIgnore]
public INFT LoadedProtocolNFT { get; set; }
Property Value
|
Improve this Doc
View Source
MAC
MAC address - will be moved to IoT device
Declaration
public string MAC { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
MechSourceNFT
Loaded Mechanical Source NFT
Declaration
[JsonIgnore]
public INFT MechSourceNFT { get; set; }
Property Value
|
Improve this Doc
View Source
MechSrcNFTHash
Mechanical source NFT. Should lead to source of the mechanical design
Declaration
public string MechSrcNFTHash { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
ProtocolNFTHash
Protocol NFT hash related to this device
It should describe the communication with the device on public APIs
Declaration
public string ProtocolNFTHash { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
SwSourceNFT
Declaration
[JsonIgnore]
public INFT SwSourceNFT { get; set; }
Property Value
|
Improve this Doc
View Source
SWSrcNFTHash
SW source NFT. Should lead to source of the software
Declaration
public string SWSrcNFTHash { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
UniqueId
Unique Id of the producet/device
Declaration
public string UniqueId { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Version
Declaration
public string Version { get; set; }
Property Value
Type |
Description |
System.String |
|
Methods
|
Improve this Doc
View Source
Fill(INFT)
Fill NFT with data from template
Declaration
public override async Task Fill(INFT NFT)
Parameters
Type |
Name |
Description |
INFT |
NFT |
|
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
Overrides
|
Improve this Doc
View Source
GetLastData()
Get last data for this NFT
Declaration
public async Task GetLastData()
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
|
Improve this Doc
View Source
Declaration
public override async Task<IDictionary<string, string>> GetMetadata(string address = "", string key = "", string receiver = "")
Parameters
Type |
Name |
Description |
System.String |
address |
|
System.String |
key |
|
System.String |
receiver |
|
Returns
Type |
Description |
System.Threading.Tasks.Task<System.Collections.Generic.IDictionary<System.String, System.String>> |
|
Overrides
|
Improve this Doc
View Source
LoadSourceNFTs()
Declaration
public async Task LoadSourceNFTs()
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
|
Improve this Doc
View Source
ParseOriginData(IDictionary<String, String>, GetTransactionInfoResponse)
Declaration
public override async Task ParseOriginData(IDictionary<string, string> lastmetadata, GetTransactionInfoResponse txinfo = null)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IDictionary<System.String, System.String> |
lastmetadata |
|
GetTransactionInfoResponse |
txinfo |
|
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
Overrides
|
Improve this Doc
View Source
ParseSpecific(IDictionary<String, String>)
Parse specific properties
Declaration
public override void ParseSpecific(IDictionary<string, string> metadata)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IDictionary<System.String, System.String> |
metadata |
|
Overrides
Implements