Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ServiceHostBase::CreateDescription Method (IDictionary<String^, ContractDescription^>^%)

 

When implemented in a derived class, creates the description of the hosted service.

Namespace:   System.ServiceModel
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

protected:
virtual ServiceDescription^ CreateDescription(
	[OutAttribute] IDictionary<String^, ContractDescription^>^% implementedContracts
) abstract

Parameters

implementedContracts
Type: System.Collections.Generic::IDictionary<String^, ContractDescription^>^%

The IDictionary<TKey, TValue> that contains the ContractDescription objects for the service.

Return Value

Type: System.ServiceModel.Description::ServiceDescription^

The ServiceDescription for the hosted service.

protected override
		ServiceDescription
		CreateDescription (out System.Collections.Generic.IDictionary<String, ContractDescription> id )
{
	id = null;
	return new ServiceDescription();
}

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft