예제 #1
0
 public BaseWriterContextService(IDecompilationCacheService cacheService, bool renameInvalidMembers)
 {
     base();
     this.cacheService         = cacheService;
     this.renameInvalidMembers = renameInvalidMembers;
     this.set_ExceptionsWhileDecompiling(new List <MethodDefinition>());
     return;
 }
예제 #2
0
        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 WinRTWriterContextService(IDecompilationCacheService cacheService, bool renameInvalidMembers)
     : base(cacheService, renameInvalidMembers)
 {
 }
		public FrameworkFoldersWriterContextService(IDecompilationCacheService cacheService) : base(cacheService, false) { }
 public FrameworkFoldersWriterContextService(IDecompilationCacheService cacheService) : base(cacheService, false)
 {
 }
예제 #8
0
 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>();
 }