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