Пример #1
0
 public BamlResourceElementNode(ModuleDef module, ResourceElement resourceElement, byte[] bamlData, ITreeNodeGroup treeNodeGroup, BamlSettings bamlSettings)
     : base(treeNodeGroup, resourceElement)
 {
     this.module       = module;
     this.bamlData     = bamlData;
     this.bamlSettings = bamlSettings;
 }
Пример #2
0
 public BamlSettings CopyTo(BamlSettings other)
 {
     other.DisassembleBaml     = this.DisassembleBaml;
     other.UseTabs             = this.UseTabs;
     other.NewLineOnAttributes = this.NewLineOnAttributes;
     return(other);
 }
Пример #3
0
		public BamlResourceElementNode(ModuleDef module, ResourceElement resourceElement, byte[] bamlData, ITreeNodeGroup treeNodeGroup, BamlSettings bamlSettings, IXamlOutputOptionsProvider xamlOutputOptionsProvider, IDocumentWriterService documentWriterService)
			: base(treeNodeGroup, resourceElement) {
			this.module = module;
			this.bamlData = bamlData;
			this.bamlSettings = bamlSettings;
			this.xamlOutputOptionsProvider = xamlOutputOptionsProvider;
			this.documentWriterService = documentWriterService;
		}
Пример #4
0
 public BamlResourceElementNode(ModuleDef module, ResourceElement resourceElement, byte[] bamlData, ITreeNodeGroup treeNodeGroup, BamlSettings bamlSettings, IXamlOutputOptionsProvider xamlOutputOptionsProvider, IDocumentWriterService documentWriterService)
     : base(treeNodeGroup, resourceElement)
 {
     this.module       = module;
     this.bamlData     = bamlData;
     this.bamlSettings = bamlSettings;
     this.xamlOutputOptionsProvider = xamlOutputOptionsProvider;
     this.documentWriterService     = documentWriterService;
 }
Пример #5
0
		public BamlSettings CopyTo(BamlSettings other) {
			other.DisassembleBaml = this.DisassembleBaml;
			return other;
		}
Пример #6
0
		public BamlAppSettingsTab(BamlSettingsImpl _global_settings) {
			this._global_settings = _global_settings;
			this.bamlSettings = _global_settings.Clone();
		}
Пример #7
0
 public BamlSettings CopyTo(BamlSettings other)
 {
     other.DisassembleBaml = this.DisassembleBaml;
     return(other);
 }
Пример #8
0
 public BamlAppSettingsTab(BamlSettingsImpl _global_settings)
 {
     this._global_settings = _global_settings;
     this.bamlSettings     = _global_settings.Clone();
 }
Пример #9
0
 public BamlAppSettingsPage(BamlSettingsImpl _global_settings)
 {
     this._global_settings = _global_settings;
     bamlSettings          = _global_settings.Clone();
 }
Пример #10
0
 void WriteTo(BamlSettings other)
 {
     other.DisassembleBaml = DisassembleBaml;
 }
Пример #11
0
		void WriteTo(BamlSettings other) {
			other.DisassembleBaml = DisassembleBaml;
		}
Пример #12
0
		public BamlResourceElementNode(ModuleDef module, ResourceElement resourceElement, byte[] bamlData, ITreeNodeGroup treeNodeGroup, BamlSettings bamlSettings)
			: base(treeNodeGroup, resourceElement) {
			this.module = module;
			this.bamlData = bamlData;
			this.bamlSettings = bamlSettings;
		}
Пример #13
0
		public BamlSettings CopyTo(BamlSettings other) {
			other.DisassembleBaml = DisassembleBaml;
			other.UseTabs = UseTabs;
			other.NewLineOnAttributes = NewLineOnAttributes;
			return other;
		}
Пример #14
0
		public BamlAppSettingsPage(BamlSettingsImpl _global_settings) {
			this._global_settings = _global_settings;
			bamlSettings = _global_settings.Clone();
		}