Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
NeuroFeatureLink.cs
3
5{
10 {
15 {
16 }
17
23 public Grade Supports(Uri Link)
24 {
25 return Link.Scheme.Equals(Constants.UriSchemes.NeuroFeature, StringComparison.OrdinalIgnoreCase) ? Grade.Ok : Grade.NotAtAll;
26 }
27
34 public async Task<bool> TryOpenLink(Uri Link, bool ShowErrorIfUnable)
35 {
36 await ServiceRef.NeuroWalletOrchestratorService.OpenNeuroFeatureUri(Link.OriginalString);
37
38 return true;
39 }
40 }
41}
const string NeuroFeature
eDaler URI Scheme (edaler)
Definition: Constants.cs:124
A set of never changing property constants and helpful values.
Definition: Constants.cs:7
Base class that references services in the app.
Definition: ServiceRef.cs:31
static INeuroWalletOrchestratorService NeuroWalletOrchestratorService
Neuro Wallet orchestrator service.
Definition: ServiceRef.cs:139
Grade
Grade enumeration
Definition: Grade.cs:7