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: