ServiceHostBase::CreateDescription Method (IDictionary<String^, ContractDescription^>^%)
.NET Framework (current version)
When implemented in a derived class, creates the description of the hosted service.
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
Available since 3.0
Show: