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

◆ RemoveRange() [1/2]

void System.Security.Cryptography.X509Certificates.X509Certificate2Collection.RemoveRange ( X509Certificate2[] certificates)
inline

Definition at line 225 of file X509Certificate2Collection.cs.

226 {
227 if (certificates == null)
228 {
229 throw new ArgumentNullException("certificates");
230 }
231 int i = 0;
232 try
233 {
234 for (; i < certificates.Length; i++)
235 {
237 }
238 }
239 catch
240 {
241 for (int j = 0; j < i; j++)
242 {
244 }
245 throw;
246 }
247 }

References System.Add, and System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Remove().