WCF Test Client - Sort service functions by name

512 Views Asked by At

When I add a service reference in WCF Test Client all of the exposed service functions are listed but in no order I could figure out...

Is there a way to sort the exposed service functions alphabetically?

Weather in WCF Test Client or in the service itself?

1

There are 1 best solutions below

0
On

It appears to not be possible. According to this answer, WCFTestClient will take the same order as the Type.GetMethods method which follows no particular order.

But as pointed out in this other answer, you can just type the first letters of the name of the method to highlight it (I agree this is not what we really want!)