Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DefaultSerializationProviderAttribute.cs
Go to the documentation of this file.
2
3[AttributeUsage(AttributeTargets.Class, Inherited = false)]
5{
6 public string ProviderTypeName { get; }
7
9 {
10 if (providerType == null)
11 {
12 throw new ArgumentNullException("providerType");
13 }
15 }
16
17 public DefaultSerializationProviderAttribute(string providerTypeName)
18 {
19 if (providerTypeName == null)
20 {
21 throw new ArgumentNullException("providerTypeName");
22 }
23 ProviderTypeName = providerTypeName;
24 }
25}
string? AssemblyQualifiedName
Definition Type.cs:45