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