ComContractsSection Class

Represents a configuration section that contains elements for specifying the namespace and contract name for a COM+ integration contract. This class cannot be inherited.

Namespace: System.ServiceModel.Configuration
Assembly: System.ServiceModel (in system.servicemodel.dll)

'Declaration
Public NotInheritable Class ComContractsSection
	Inherits ConfigurationSection
'Usage
Dim instance As ComContractsSection

public final class ComContractsSection extends ConfigurationSection
public final class ComContractsSection extends ConfigurationSection
Not applicable.

The COM+ integration service contracts are currently restricted to the “http://tempuri.org” namespace, and contract name is derived from the supporting COM interface. You can, however, specify alternatives by using the comContracts section in the configuration file. For example, you can use the following configuration to specify the namespace and contract name for a service contract

  <!--   <configuration> -->
  <!--     <system.serviceModel> -->
  <!--       <services> -->
</services>

<!-- <comContracts> is under <system.ServiceModel> -->
<!-- it is at same level as <services> or <behaviors> -->
<comContracts>
  <comContract contract="{C551FBA9-E3AA-4272-8C2A-84BD8D290AC7}" 
    name="IPayroll" 
    namespace="http://contoso.com/services/financial" />
  <comContract contract="{BBA0C8B8-78DC-4C7B-919D-D2253100896B}" 
    name="ISupplies" 
    namespace="http://contoso.com/services/supplychain" />
</comContracts>

<behaviors>
  <!--     </behaviors> -->
  <!--   </system.serviceModel> -->

When the service is initialized, the specified namespaces and contract names are applied to the generated service descriptions.

When this section is empty, the service initialization applies a default namespace and contract name taken from the supporting COM interface ID.

System.Object
   System.Configuration.ConfigurationElement
     System.Configuration.ConfigurationSection
      System.ServiceModel.Configuration.ComContractsSection

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0

Community Additions

ADD
Show: