當前位置: 首頁>>代碼示例>>C#>>正文


C# ContractDescription類代碼示例

本文整理匯總了C#中System.ServiceModel.Description.ContractDescription的典型用法代碼示例。如果您正苦於以下問題:C# ContractDescription類的具體用法?C# ContractDescription怎麽用?C# ContractDescription使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


ContractDescription類屬於System.ServiceModel.Description命名空間,在下文中一共展示了ContractDescription類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Uri

Uri baseAddress = new Uri("http://localhost:8001/Simple");
           ServiceHost serviceHost = new ServiceHost(typeof(CalculatorService), baseAddress);

           serviceHost.AddServiceEndpoint(
               typeof(ICalculator),
               new WSHttpBinding(),
               "CalculatorServiceObject");

           // Enable Mex
           ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
           smb.HttpGetEnabled = true;
           serviceHost.Description.Behaviors.Add(smb);

           serviceHost.Open();

           ContractDescription cd0 = new ContractDescription("ICalculator");
           ContractDescription cd1 = new ContractDescription("ICalculator", "http://www.tempuri.org");
           ContractDescription cd2 = ContractDescription.GetContract(typeof(ICalculator));
           CalculatorService calcSvc = new CalculatorService();
           ContractDescription cd3 = ContractDescription.GetContract(typeof(ICalculator), calcSvc);
           ContractDescription cd4 = ContractDescription.GetContract(typeof(ICalculator), typeof(CalculatorService));
           ContractDescription cd = serviceHost.Description.Endpoints[0].Contract;         

           Console.WriteLine("Displaying information for contract: {0}", cd.Name.ToString());

           KeyedByTypeCollection<IContractBehavior> behaviors = cd.Behaviors;
           Console.WriteLine("\tDisplay all behaviors:");
           foreach (IContractBehavior behavior in behaviors)
           {
               Console.WriteLine("\t\t" + behavior.ToString());
           }

           Type type = cd.CallbackContractType;

           string configName = cd.ConfigurationName;
           Console.WriteLine("\tConfiguration name: {0}", configName);

           Type contractType = cd.ContractType;
           Console.WriteLine("\tContract type: {0}", contractType.ToString());

           bool hasProtectionLevel = cd.HasProtectionLevel;
           if (hasProtectionLevel)
           {
               ProtectionLevel protectionLevel = cd.ProtectionLevel;
               Console.WriteLine("\tProtection Level: {0}", protectionLevel.ToString());
           }

           string name = cd.Name;
           Console.WriteLine("\tName: {0}", name);

           string namespc = cd.Namespace;
           Console.WriteLine("\tNamespace: {0}", namespc);

           OperationDescriptionCollection odc = cd.Operations;
           Console.WriteLine("\tDisplay Operations:");
           foreach (OperationDescription od in odc)
           {
               Console.WriteLine("\t\t" + od.Name);
           }

           SessionMode sm = cd.SessionMode;
           Console.WriteLine("\tSessionMode: {0}", sm.ToString());

           Collection<ContractDescription> inheretedContracts = cd.GetInheritedContracts();
           Console.WriteLine("\tInherited Contracts:");
           foreach (ContractDescription contractdescription in inheretedContracts)
           {
               Console.WriteLine("\t\t" + contractdescription.Name);
           }

           Console.WriteLine("The service is ready.");
           Console.WriteLine("Press <ENTER> to terminate service.");
           Console.WriteLine();
           Console.ReadLine();

           // Close the ServiceHostBase to shutdown the service.
           serviceHost.Close();
開發者ID:.NET開發者,項目名稱:System.ServiceModel.Description,代碼行數:77,代碼來源:ContractDescription


注:本文中的System.ServiceModel.Description.ContractDescription類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。