Class IoTMessageNFT
IoT Messagee NFT - specific message NFT dedicated for IoT applications
Implements
Inherited Members
Namespace: VEDriversLite.NFT.DevicesNFTs
Assembly: VEDriversLite.dll
Syntax
public class IoTMessageNFT : CommonNFT, INFT
Constructors
| Improve this Doc View SourceIoTMessageNFT(String)
Constructor of the empty NFT IoT Message
Declaration
public IoTMessageNFT(string utxo)
Parameters
Type | Name | Description |
---|---|---|
System.String | utxo |
Properties
| Improve this Doc View SourceDecrypted
Has been message already decrypted?
Declaration
public bool Decrypted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Encrypt
Encrypt the message before the send
Declaration
public bool Encrypt { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsReceivedMessage
Was this message received or sent
Declaration
public bool IsReceivedMessage { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Partner
Communication partner
Declaration
public string Partner { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
| Improve this Doc View SourceDecrypt(BitcoinSecret, Boolean)
this function will decrypt the NFT if it is possile It needs the owner Private Key to create shared password which the combination of the sender public key.
Declaration
public async Task<bool> Decrypt(BitcoinSecret secret, bool decryptEvenOnSameAddress = false)
Parameters
Type | Name | Description |
---|---|---|
NBitcoin.BitcoinSecret | secret | Owner Private Key |
System.Boolean | decryptEvenOnSameAddress | Set true when you have preset the partner address manually - for example encryption on same address. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Boolean> | true if success |
Fill(INFT)
Fill the data of the NFT
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 SourceGetLastData()
Get last data of this NFT
Declaration
public async Task GetLastData()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task |
GetMetadata(String, String, String)
Get the NFT data for the NFT
Declaration
public override async Task<IDictionary<string, string>> GetMetadata(string address = "", string key = "", string receiver = "")
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Address of the sender |
System.String | key | Private key of the sender for encryption |
System.String | receiver | receiver of the NFT |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Collections.Generic.IDictionary<System.String, System.String>> |
Overrides
| Improve this Doc View SourceGetPartner()
Load communication partner info
Declaration
public async Task GetPartner()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task |
GetReceiver()
Get receiver of this message
Declaration
public async Task GetReceiver()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task |
ParseOriginData(IDictionary<String, String>, GetTransactionInfoResponse)
Find and parse origin data
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 SourceParseSpecific(IDictionary<String, String>)
Parse specific parameters
Declaration
public override void ParseSpecific(IDictionary<string, string> metadata)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IDictionary<System.String, System.String> | metadata |