Ich habe einen WCF-Dienst, wo Methoden viel wie die folgenden sind. Nun, ich weiß, dass die <summary>
Info ist nicht offengelegt, aber wie kann ich diese Informationen offenlegen, so dass der Verbraucher die Informationen in Intellisense erhält?
/// <summary>
/// Obtains a list of agreements for a given dealer
/// </summary>
/// <param name="query">Object identifying the dealer<see cref="AgreementListRequest"/></param>
/// <returns>Object containing a list of all agreements for the provided dealer<see cref="AgreementListResponse"/></returns>
[OperationContract]
[FaultContract(typeof(DatabaseFault))]
[FaultContract(typeof(ServiceAgentFault))]
AgreementListResponse GetAgreements(AgreementListRequest request);