Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ServiceDescriptionInfo.cs
1
using
System
;
2
using
System.Collections.Generic
;
3
using
System.Runtime.InteropServices
;
4
5
namespace
Waher.IoTGateway.Svc.ServiceManagement.Structures
6
{
7
[StructLayout(LayoutKind.Sequential)]
8
internal
struct
ServiceDescriptionInfo
9
{
10
[MarshalAs(UnmanagedType.LPWStr)]
11
private
string
serviceDescription;
12
13
public
ServiceDescriptionInfo(
string
serviceDescription)
14
{
15
this.serviceDescription = serviceDescription;
16
}
17
18
public
string
ServiceDescription
19
{
20
get
{
return
serviceDescription; }
21
set
{ serviceDescription = value; }
22
}
23
}
24
}
System.Collections.Generic
Definition:
ImplTypes.g.cs:4970
System.Runtime.InteropServices
Definition:
Adapters.g.cs:58
System
Definition:
Adapters.g.cs:58
Waher.IoTGateway.Svc.ServiceManagement.Structures
Definition:
ScAction.cs:6
IoTGateway
Waher.IoTGateway.Svc
ServiceManagement
Structures
ServiceDescriptionInfo.cs
Generated by
1.9.5