Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ObsoleteMethodAttribute.cs
1
using
System;
2
using
System.Collections.Generic;
3
4
namespace
Waher.Persistence.Attributes
5
{
12
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple =
false
, Inherited =
true
)]
13
public
class
ObsoleteMethodAttribute
: Attribute
14
{
15
private
readonly
string
methodName;
16
25
public
ObsoleteMethodAttribute
(
string
MethodName
)
26
{
27
this.methodName =
MethodName
;
28
}
29
36
public
string
MethodName
=> this.methodName;
37
}
38
}
Waher.Persistence.Attributes.ObsoleteMethodAttribute
This attribute defines a method for obsolete properties and field values found in serializations of o...
Definition:
ObsoleteMethodAttribute.cs:14
Waher.Persistence.Attributes.ObsoleteMethodAttribute.MethodName
string MethodName
Name of method that will be called if deserializing objects with obsolete property or field values....
Definition:
ObsoleteMethodAttribute.cs:36
Waher.Persistence.Attributes.ObsoleteMethodAttribute.ObsoleteMethodAttribute
ObsoleteMethodAttribute(string MethodName)
This attribute defines a method for obsolete properties and field values found in serializations of o...
Definition:
ObsoleteMethodAttribute.cs:25
Waher.Persistence.Attributes
Definition:
ArchivingTimeAttribute.cs:4
IoTGateway
Persistence
Waher.Persistence
Attributes
ObsoleteMethodAttribute.cs
Generated by
1.9.5