⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testconsole.exe.config

📁 应用框架的设计与实现的源代码(SAF) 《应用框架的设计与实现》随书源码
💻 CONFIG
字号:
<?xml version="1.0" encoding="utf-8" ?> 
<configuration>
	<configSections>
		<section name="Framework" type="SAF.Configuration.ConfigurationHandler,SAF.Configuration" />
		<section name="MyApplication" type="SAF.Configuration.ConfigurationHandler,SAF.Configuration" />
	</configSections>
	<MyApplication type="SAF.Application.Configuration.ConfigurationManager,SAF.Application.Configuration">
			<DocumentLayers>
				<DocumentLayer name="PurchaseOrderWorkFlow">
					<Layer type="TestDocumentLayer.DocumentLoggingLayer,TestDocumentLayer">
						<Config connection="Initial Catalog=SAFDemo;Data Source=localhost;Integrated Security=SSPI"/>
						<Layer type="TestDocumentLayer.DocumentXmlValidationLayer,TestDocumentLayer">
							<Config incomingSchema ="..\\..\\Order.xsd" outgoingSchema="..\\..\\Confirmations.xsd" />
							<Layer type="TestWorkFlow.DocumentWorkFlowLayer,TestWorkFlow">
								<Config>
									<InitialComponent type = "TestWorkFlow.InitialComponent,TestWorkFlow"/>
									<Visitor type = "TestWorkFlow.GenericPurchaseOrderVisitor,TestWorkFlow"/>
								</Config>
							</Layer>
						</Layer>
					</Layer>
				</DocumentLayer>
			</DocumentLayers>
			<WorkFlow>
				<Customers>
					<CustomerA email="customerA@customerA.com" />
				</Customers>
			</WorkFlow>
	</MyApplication>
</configuration>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -