当前位置: 首页>>代码示例>>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;未经允许,请勿转载。