1 implementation of ITypeResolutionService
System.Windows.Forms (1)
winforms\Managed\System\Resources\ResXDataNode.cs (1)
900internal class AssemblyNamesTypeResolutionService : ITypeResolutionService {
53 references to ITypeResolutionService
System (6)
compmod\system\componentmodel\LicFileLicenseProvider.cs (3)
67ITypeResolutionService resolver = (ITypeResolutionService)context.GetService(typeof(ITypeResolutionService));
compmod\system\componentmodel\TypeDescriptor.cs (3)
597ITypeResolutionService tr = (ITypeResolutionService)site.GetService(typeof(ITypeResolutionService));
System.Drawing (3)
commonui\System\Drawing\Design\ToolboxItem.cs (3)
565ITypeResolutionService ts = null; 573ts = (ITypeResolutionService)host.GetService(typeof(ITypeResolutionService));
System.Web (9)
Compilation\ExpressionBuilder.cs (3)
77ITypeResolutionService ts = (ITypeResolutionService)host.GetService(typeof(ITypeResolutionService));
UI\TagNameToTypeMapper.cs (3)
134ITypeResolutionService typeResolutionService = (ITypeResolutionService)_parser.DesignerHost.GetService(typeof(ITypeResolutionService));
UI\TemplateParser.cs (3)
344private ITypeResolutionService _typeResolutionService; 356_typeResolutionService = (ITypeResolutionService)_designerHost.GetService(typeof(ITypeResolutionService));
System.Web.Entity.Design (3)
System\Data\WebControls\Design\EntityDataSourceDesignerHelper.cs (3)
108ITypeResolutionService typeResProvider = (ITypeResolutionService)serviceProvider.GetService(typeof(ITypeResolutionService));
System.Windows.Forms (20)
winforms\Managed\System\Resources\ResXDataNode.cs (7)
74private static ITypeResolutionService internalTypeResolver = new AssemblyNamesTypeResolutionService(new AssemblyName[] { new AssemblyName("System.Windows.Forms") }); 433private object GenerateObjectFromDataNodeInfo(DataNodeInfo dataNodeInfo, ITypeResolutionService typeResolver) { 596public string GetValueTypeName(ITypeResolutionService typeResolver) { 667public object GetValue(ITypeResolutionService typeResolver) { 733private Type ResolveType(string typeName, ITypeResolutionService typeResolver) { 819private ITypeResolutionService typeResolver; 822internal ResXSerializationBinder(ITypeResolutionService typeResolver) {
winforms\Managed\System\Resources\ResXResourceReader.cs (13)
57ITypeResolutionService typeResolver; 69private ResXResourceReader(ITypeResolutionService typeResolver) { 80public ResXResourceReader(string fileName) : this(fileName, (ITypeResolutionService)null, (IAliasResolver)null) { 82public ResXResourceReader(string fileName, ITypeResolutionService typeResolver) : this(fileName, typeResolver, (IAliasResolver)null) { 84internal ResXResourceReader(string fileName, ITypeResolutionService typeResolver, IAliasResolver aliasResolver) { 93public ResXResourceReader(TextReader reader) : this(reader, (ITypeResolutionService)null, (IAliasResolver)null) { 95public ResXResourceReader(TextReader reader, ITypeResolutionService typeResolver) : this(reader, typeResolver, (IAliasResolver)null) { 97internal ResXResourceReader(TextReader reader, ITypeResolutionService typeResolver, IAliasResolver aliasResolver) { 107public ResXResourceReader(Stream stream) : this(stream, (ITypeResolutionService)null, (IAliasResolver)null) { 109public ResXResourceReader(Stream stream, ITypeResolutionService typeResolver) : this(stream, typeResolver, (IAliasResolver)null) { 111internal ResXResourceReader(Stream stream, ITypeResolutionService typeResolver, IAliasResolver aliasResolver) { 312return FromFileContents(fileContents, (ITypeResolutionService)null); 320public static ResXResourceReader FromFileContents(string fileContents, ITypeResolutionService typeResolver) {
System.Workflow.ComponentModel (12)
AuthoringOM\Compiler\TypeSystem\AssemblyLoader.cs (3)
26ITypeResolutionService trs = (ITypeResolutionService)typeProvider.GetService(typeof(ITypeResolutionService));
AuthoringOM\Design\ActivityDesigner.cs (3)
2004ITypeResolutionService typeResolutionService = serviceProvider.GetService(typeof(ITypeResolutionService)) as ITypeResolutionService;
AuthoringOM\Design\CompositeActivityDesigner.cs (3)
641ITypeResolutionService trs = serviceProvider.GetService(typeof(ITypeResolutionService)) as ITypeResolutionService;
AuthoringOM\Design\DesignerInterfaces.cs (1)
1161ITypeResolutionService GetTypeResolutionService(object obj);
AuthoringOM\Serializer\WorkflowMarkupSerializationManager.cs (1)
62this.designMode = (manager.GetService(typeof(ITypeResolutionService)) != null);
AuthoringOM\Serializer\XamlInterfaces.cs (1)
208if (type == null && manager.GetService(typeof(ITypeResolutionService)) == null)