Exemplo n.º 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;
 }
Exemplo n.º 2
0
 public BamlSettings CopyTo(BamlSettings other)
 {
     other.DisassembleBaml     = this.DisassembleBaml;
     other.UseTabs             = this.UseTabs;
     other.NewLineOnAttributes = this.NewLineOnAttributes;
     return(other);
 }
Exemplo n.º 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;
		}
Exemplo n.º 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;
 }
Exemplo n.º 5
0
		public BamlSettings CopyTo(BamlSettings other) {
			other.DisassembleBaml = this.DisassembleBaml;
			return other;
		}
Exemplo n.º 6
0
		public BamlAppSettingsTab(BamlSettingsImpl _global_settings) {
			this._global_settings = _global_settings;
			this.bamlSettings = _global_settings.Clone();
		}
Exemplo n.º 7
0
 public BamlSettings CopyTo(BamlSettings other)
 {
     other.DisassembleBaml = this.DisassembleBaml;
     return(other);
 }
Exemplo n.º 8
0
 public BamlAppSettingsTab(BamlSettingsImpl _global_settings)
 {
     this._global_settings = _global_settings;
     this.bamlSettings     = _global_settings.Clone();
 }
Exemplo n.º 9
0
 public BamlAppSettingsPage(BamlSettingsImpl _global_settings)
 {
     this._global_settings = _global_settings;
     bamlSettings          = _global_settings.Clone();
 }
Exemplo n.º 10
0
 void WriteTo(BamlSettings other)
 {
     other.DisassembleBaml = DisassembleBaml;
 }
Exemplo n.º 11
0
		void WriteTo(BamlSettings other) {
			other.DisassembleBaml = DisassembleBaml;
		}
Exemplo n.º 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;
		}
Exemplo n.º 13
0
		public BamlSettings CopyTo(BamlSettings other) {
			other.DisassembleBaml = DisassembleBaml;
			other.UseTabs = UseTabs;
			other.NewLineOnAttributes = NewLineOnAttributes;
			return other;
		}
Exemplo n.º 14
0
		public BamlAppSettingsPage(BamlSettingsImpl _global_settings) {
			this._global_settings = _global_settings;
			bamlSettings = _global_settings.Clone();
		}