1 write to _localType
System.Xaml (1)
System\Xaml\Runtime\DynamicMethodRuntime.cs (1)
138
_localType
= _localAssembly.GetType(accessLevel.PrivateAccessToTypeName, throwOnError: true);
8 references to _localType
System.Xaml (8)
System\Xaml\Runtime\DynamicMethodRuntime.cs (8)
462
if (
_localType
is not null)
464
return new DynamicMethod(name, returnType, argTypes,
_localType
);
477
if (
_localType
is not null &&
_localType
!= declaringType && declaringType.IsAssignableFrom(
_localType
))
481
return
_localType
;
489
declaringType.Assembly,
_localType
.Assembly);
492
return
_localType
;