Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ContractReferenceEventArgs.cs
1using System;
2
4{
8 public class ContractReferenceEventArgs : EventArgs
9 {
10 private readonly string contractId;
11
16 : base()
17 {
18 this.contractId = ContractId;
19 }
20
24 public string ContractId => this.contractId;
25
29 public Uri ContractIdUri => ContractsClient.ContractIdUri(this.contractId);
30
34 public string ContractIdUriString => ContractsClient.ContractIdUriString(this.contractId);
35 }
36}
Adds support for legal identities, smart contracts and signatures to an XMPP client.
static Uri ContractIdUri(string ContractId)
Contract identity URI.
static string ContractIdUriString(string ContractId)
Contract identity URI, as a string.
ContractReferenceEventArgs(string ContractId)
Event arguments for events referencing a contract.
string ContractIdUriString
ID of contract being signed, as an URI string.