Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ReliabilityContractAttribute.cs
Go to the documentation of this file.
2
3[Obsolete("The Constrained Execution Region (CER) feature is not supported.", DiagnosticId = "SYSLIB0004", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
4[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Interface, Inherited = false)]
6{
8
9 public Cer Cer { get; }
10
11 public ReliabilityContractAttribute(Consistency consistencyGuarantee, Cer cer)
12 {
13 ConsistencyGuarantee = consistencyGuarantee;
14 Cer = cer;
15 }
16}