Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Tag

string System.Security.SecurityElement.Tag
getset

Definition at line 27 of file SecurityElement.cs.

28 {
29 get
30 {
31 return _tag;
32 }
33 set
34 {
35 if (value == null)
36 {
37 throw new ArgumentNullException("Tag");
38 }
39 if (!IsValidTag(value))
40 {
41 throw new ArgumentException(SR.Format(SR.Argument_InvalidElementTag, value));
42 }
43 _tag = value;
44 }
45 }
static bool IsValidTag([NotNullWhen(true)] string? tag)

Referenced by System.Security.SecurityElement.SearchForChildByTag().