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

◆ ToString()

override string System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy.ToString ( )
inline

Definition at line 78 of file ExtendedProtectionPolicy.cs.

79 {
81 stringBuilder.Append("ProtectionScenario=");
86 stringBuilder3.Append(ref handler);
87 stringBuilder.Append("; PolicyEnforcement=");
93 stringBuilder.Append("; CustomChannelBinding=");
94 if (_customChannelBinding == null)
95 {
96 stringBuilder.Append("<null>");
97 }
98 else
99 {
100 stringBuilder.Append(_customChannelBinding.ToString());
101 }
102 stringBuilder.Append("; ServiceNames=");
103 if (_customServiceNames == null)
104 {
105 stringBuilder.Append("<null>");
106 }
107 else
108 {
109 bool flag = true;
110 foreach (string customServiceName in _customServiceNames)
111 {
112 if (flag)
113 {
114 flag = false;
115 }
116 else
117 {
118 stringBuilder.Append(", ");
119 }
121 }
122 }
123 return stringBuilder.ToString();
124 }

References System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy._customChannelBinding, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy._customServiceNames, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy._policyEnforcement, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy._protectionScenario, System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted(), and System.Runtime.Serialization.Dictionary.