Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ShortNameAttribute.cs
1
using
System;
2
3
namespace
Waher.Persistence.Attributes
4
{
8
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, AllowMultiple =
false
, Inherited =
true
)]
9
public
class
ShortNameAttribute
: Attribute
10
{
11
private
readonly
string
name;
12
17
public
ShortNameAttribute
(
string
Name
)
18
: base()
19
{
20
this.name =
Name
;
21
}
22
26
public
string
Name
=> this.name;
27
}
28
}
Waher.Persistence.Attributes.ShortNameAttribute
This attribute defines a short name for a member (field or property). Short names are preferred for s...
Definition:
ShortNameAttribute.cs:10
Waher.Persistence.Attributes.ShortNameAttribute.ShortNameAttribute
ShortNameAttribute(string Name)
This attribute defines a short name for a member (field or property). Short names are preferred for s...
Definition:
ShortNameAttribute.cs:17
Waher.Persistence.Attributes.ShortNameAttribute.Name
string Name
Short name.
Definition:
ShortNameAttribute.cs:26
Waher.Persistence.Attributes
Definition:
ArchivingTimeAttribute.cs:4
IoTGateway
Persistence
Waher.Persistence
Attributes
ShortNameAttribute.cs
Generated by
1.9.5