16 references to FullName
System.AddIn (16)
System\Addin\Hosting\ActivationWorker.cs (2)
130
Type addinType = addInAssembly.GetType(_pipeline._addin.TypeInfo.
FullName
, true);
182
Type adapterType = addinAdapterAssembly.GetType(_pipeline._addinAdapter.TypeInfo.
FullName
, true);
System\Addin\Hosting\AddInActivator.cs (3)
328
Type addinType = addInAssembly.GetType(pipeline._addin.TypeInfo.
FullName
, true);
502
hostAdapterType = hostAdapterAssembly.GetType(hostAdapter.TypeInfo.
FullName
, true);
503
contractType = contractAssembly.GetType(contract.TypeInfo.
FullName
, true);
System\Addin\Hosting\AddInToken.cs (2)
223
get { return _resolvedHostAddinView.
FullName
+ " " + _addin.RelativeLocation + " " + _addin.TypeInfo.
FullName
; }
System\Addin\Hosting\Store\AddIn.cs (3)
176
warnings.Add(String.Format(CultureInfo.CurrentCulture, Res.UnknownNamedAddInAttributeParameter, namedArg.Name, type.
FullName
, type.Assembly.ModuleName));
184
warnings.Add(String.Format(CultureInfo.CurrentCulture, Res.AddInMustSpecifyName, type.
FullName
, type.Assembly.ModuleName));
252
warnings.Add(String.Format(CultureInfo.CurrentCulture, Res.NoDefaultConstructor, type.
FullName
, type.Assembly.ModuleName));
System\Addin\Hosting\Store\HostAdapter.cs (1)
92
warnings.Add(String.Format(CultureInfo.CurrentCulture, Res.HostAdapterUnusableCtorBadParam, type.AssemblyQualifiedName, paramType.
FullName
));
System\Addin\Hosting\Store\PipelineComponent.cs (1)
225
return _typeInfo.
FullName
;
System\Addin\MiniReflection\TypeInfo.cs (4)
170
Type t = mscorlib.GetType(
FullName
, false);
182
_assemblyQualifiedName =
FullName
+ ", " + typeRefDefiningAssemblyName;
380
_assemblyQualifiedName =
FullName
+ ", " + _assembly.FullName;
402
_assemblyQualifiedName =
FullName
+ ", " + _assembly.FullName;