29 references to SecurityUtils
System (29)
compmod\system\collections\specialized\nameobjectcollectionbase.cs (1)
576object[] allValues = (object[]) SecurityUtils.ArrayCreateInstance(type, n);
compmod\system\componentmodel\BindingList.cs (1)
345newItem = SecurityUtils.SecureCreateInstance(type);
compmod\system\componentmodel\LicenseManager.cs (2)
126created = SecurityUtils.SecureCreateInstance(type, args); 282provider = (LicenseProvider)SecurityUtils.SecureCreateInstance(providerType);
compmod\system\componentmodel\MaskedTextProvider.cs (1)
525clonedProvider = SecurityUtils.SecureCreateInstance(providerType, parameters) as MaskedTextProvider;
compmod\system\componentmodel\ReflectEventDescriptor.cs (2)
213SecurityUtils.MethodInfoInvoke(addMethod, component, new object[] { value}); 472SecurityUtils.MethodInfoInvoke(removeMethod, component, new object[] { value });
compmod\system\componentmodel\ReflectPropertyDescriptor.cs (6)
938return SecurityUtils.MethodInfoInvoke(GetMethodValue, component, null); 1057oldValue = SecurityUtils.MethodInfoInvoke(GetMethodValue, invokee, (object[])null); 1071SecurityUtils.MethodInfoInvoke(ResetMethodValue, invokee, (object[])null); 1076newValue = SecurityUtils.MethodInfoInvoke(GetMethodValue, invokee, (object[])null); 1125oldValue = SecurityUtils.MethodInfoInvoke(GetMethodValue, invokee, (object[])null); 1139SecurityUtils.MethodInfoInvoke(SetMethodValue, invokee, new object[] { value });
compmod\system\componentmodel\ReflectTypeDescriptionProvider.cs (5)
200obj = SecurityUtils.SecureConstructorInvoke(objectType, argTypes, args, true, BindingFlags.ExactBinding); 218obj = SecurityUtils.SecureConstructorInvoke(objectType, argTypes, args, true); 222obj = SecurityUtils.SecureCreateInstance(objectType, args); 235object obj = SecurityUtils.SecureConstructorInvoke(objectType, _typeConstructor, new object[] {callingType}, false); 238obj = SecurityUtils.SecureCreateInstance(objectType);
compmod\system\componentmodel\TypeDescriptionProvider.cs (1)
70return SecurityUtils.SecureCreateInstance(objectType, args);
compmod\system\componentmodel\TypeDescriptor.cs (1)
621designer = (IDesigner)SecurityUtils.SecureCreateInstance(designerType, null, true);
compmod\system\diagnostics\traceutils.cs (3)
47newObject = SecurityUtils.ConstructorInfoInvoke(ctorInfo, new object[] { }); 69newObject = SecurityUtils.ConstructorInfoInvoke(ctorInfo, new object[] { initializeData }); 82newObject = SecurityUtils.ConstructorInfoInvoke(ctorInfos[i], new object[] { convertedInitializeData });
services\monitoring\system\diagnosticts\DiagnosticsConfigurationHandler.cs (2)
201newListener = (TraceListener)(SecurityUtils.ConstructorInfoInvoke(ctorInfo, new object[] { })); 208newListener = (TraceListener)(SecurityUtils.ConstructorInfoInvoke(ctorInfo, new object[] { initializeData }));
sys\system\configuration\ApplicationSettingsBase.cs (2)
429SettingsProvider spdr = SecurityUtils.SecureCreateInstance(providerType) as SettingsProvider; 555SettingsProvider spdr = SecurityUtils.SecureCreateInstance(providerType) as SettingsProvider;
sys\system\configuration\SettingsPropertyValue.cs (2)
143return SecurityUtils.SecureCreateInstance(Property.PropertyType); 168val = SecurityUtils.SecureCreateInstance(Property.PropertyType);