Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
CreatedItem.cs
1
using
NeuroAccessMaui.Services.Contacts
;
2
using
NeuroFeatures.Events
;
3
4
namespace
NeuroAccessMaui.UI.Pages.Wallet.TokenEvents.Events
5
{
10
public
class
CreatedItem
(
Created
Event) :
OwnershipEventItem
(Event)
11
{
12
private
readonly
Created
@
event
= Event;
13
private
string
? creatorFriendlyName;
14
18
public
override
EventType
Type =>
EventType
.
Created
;
19
23
public
string
Creator => this.@
event
.Creator;
24
28
public
string
CreatorFriendlyName => this.creatorFriendlyName ??
string
.Empty;
29
33
public
override
async Task DoBind()
34
{
35
await base.DoBind();
36
37
this.creatorFriendlyName = await
ContactInfo
.
GetFriendlyName
(this.Creator);
38
}
39
}
40
}
NeuroAccessMaui.Services.Contacts.ContactInfo
Contains information about a contact.
Definition:
ContactInfo.cs:21
NeuroAccessMaui.Services.Contacts.ContactInfo.GetFriendlyName
static async Task< string > GetFriendlyName(CaseInsensitiveString RemoteId)
Gets the friendly name of a remote identity (Legal ID or Bare JID).
Definition:
ContactInfo.cs:257
NeuroFeatures.Events.Created
Event raised when a token has been created.
Definition:
Created.cs:10
NeuroFeatures.Events.Created.Created
Created()
Event raised when a token has been created.
Definition:
Created.cs:16
NeuroAccessMaui.Services.Contacts
Definition:
ContactInfo.cs:11
NeuroAccessMaui.UI.Pages.Wallet.TokenEvents.Events
Definition:
CreatedItem.cs:5
NeuroAccessMaui.UI.Pages.Wallet.TokenEvents.Events.OwnershipEventItem
abstract class OwnershipEventItem(TokenOwnershipEvent Event)
Represents a token ownership event.
Definition:
OwnershipEventItem.cs:10
NeuroAccessMaui.UI.Pages.Wallet.TokenEvents.Events.CreatedItem
class CreatedItem(Created Event)
Represents a token creation event.
Definition:
CreatedItem.cs:10
NeuroAccessMaui.UI.Pages.Wallet.TokenEvents.EventType
EventType
Types of events
Definition:
EventItem.cs:19
NeuroFeatures.Events
Definition:
Created.cs:5
NeuroAccessMaui
NeuroAccessMaui
UI
Pages
Wallet
TokenEvents
Events
CreatedItem.cs
Generated by
1.9.5