Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ServiceDescriptionInfo.cs
1using System;
2using System.Collections.Generic;
3using System.Runtime.InteropServices;
4
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}