public BaseWriterContextService(IDecompilationCacheService cacheService, bool renameInvalidMembers) { base(); this.cacheService = cacheService; this.renameInvalidMembers = renameInvalidMembers; this.set_ExceptionsWhileDecompiling(new List <MethodDefinition>()); return; }
public PropertyDecompiler(PropertyDefinition property, ILanguage language, bool renameInvalidMembers, IDecompilationCacheService cacheService, TypeSpecificContext typeContext = null) { this.propertyDef = property; this.language = language; this.renameInvalidMembers = renameInvalidMembers; this.cacheService = cacheService; this.typeContext = typeContext; this.propertyFieldDef = null; this.ExceptionsWhileDecompiling = new List <MethodDefinition>(); }
public PropertyDecompiler(PropertyDefinition property, ILanguage language, bool renameInvalidMembers, IDecompilationCacheService cacheService, TypeSpecificContext typeContext = null) { this.propertyDef = property; this.language = language; this.renameInvalidMembers = renameInvalidMembers; this.cacheService = cacheService; this.typeContext = typeContext; this.propertyFieldDef = null; this.ExceptionsWhileDecompiling = new List<MethodDefinition>(); }
public WinRTWriterContextService(IDecompilationCacheService cacheService, bool renameInvalidMembers) : base(cacheService, renameInvalidMembers) { }
public FrameworkFoldersWriterContextService(IDecompilationCacheService cacheService) : base(cacheService, false) { }
public SimpleWriterContextService(IDecompilationCacheService cacheService, bool renameInvalidMembers) { base(cacheService, renameInvalidMembers); return; }
public BaseWriterContextService(IDecompilationCacheService cacheService, bool renameInvalidMembers) { this.cacheService = cacheService; this.renameInvalidMembers = renameInvalidMembers; this.ExceptionsWhileDecompiling = new List<MethodDefinition>(); }