I am trying to correctly document my code.
I have a method that can throw a Fault exception for a specific type. When I look at the documentation for a method, it does not show a specific type of FaultException.
///<summary> /// Description of method ///</summary> /// <exception cref="FaultException{ValidationFault}">Description here</exception> OrganizationDto Update(UpdateOrganizationRequest organizationDto);
The documentation shows: FaultException <TDetail> : Description here
I want it to show: FaultException <ValidationFault> : Description here
How can i achieve this?
source share