Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ServiceProviderWithLegalId.cs
2{
7 {
12 : base()
13 {
14 }
15
24 public ServiceProviderWithLegalId(string Id, string Type, string Name, string LegalId, bool External)
25 : base(Id, Type, Name)
26 {
27 this.LegalId = LegalId;
28 this.External = External;
29 }
30
42 public ServiceProviderWithLegalId(string Id, string Type, string Name, string LegalId, bool External,
43 string IconUrl, int IconWidth, int IconHeight)
45 {
46 this.LegalId = LegalId;
47 this.External = External;
48 }
49
53 public string LegalId { get; }
54
58 public bool External { get; }
59
68 public virtual IServiceProvider Create(string Id, string Type, string Name, string LegalId, bool External)
69 {
71 }
72
84 public virtual IServiceProvider Create(string Id, string Type, string Name, string LegalId, bool External,
85 string IconUrl, int IconWidth, int IconHeight)
86 {
88 }
89 }
90}
Contains information about a service provider.
string Name
Displayable name of service provider.
int IconWidth
Width of icon, if available.
string IconUrl
Optional URL to icon of service provider.
int IconHeight
Height of icon, if available.
Interface for information about a service provider.