ASMX web proxy class changing class name from PascalCase to camelCase - visual studio 2019
问题 We had a legacy asmx web service (2.0 framework) which were migrated to 4.8 framework. [WebMethod] public virtual GetCreditPolicyResponse GetCreditPolicy(GetCreditPolicy getCreditPolicy) { return organisationStrategy.GetCreditPolicy(getCreditPolicy); } Class definition : public class GetCreditPolicy { public GetCreditPolicy(); public int RecognitionId { get; set; } } Now while we are generating the wsdl of this we are getting the following : <s:element name="GetCreditPolicy"> <s:complexType>