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

📄 operationextend.cs

📁 In the previous article, we presented an approach for capturing similarity between words that was co
💻 CS
字号:
//
// Author Thanhdn
// 
//

using System;
using System.Web.Services.Description ;
using UDDI_Explorer;


namespace UDDI_Explorer
{
	/// <summary>
	/// Summary description for OperationExtend.
	/// </summary>
	/// extend from Service Operation
	/// 
	[Serializable]
	public class OperationExtend : Copyable
	{
		public UDDIService MyServiceInfo;
		public Operation  MyOperation;		
		public string Documentation;
		
		public OperationExtend()
		{
			MyOperation = new Operation ();
			MyServiceInfo = new UDDIService ();			
			//ServiceInfor = s;
			//
			// TODO: Add constructor logic here
			//
		}
	}
}

⌨️ 快捷键说明

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