There appears to be a bug in how Visual Studio does "Add Service Reference" proxy generation for VB.NET projects.
I ran into this issue when trying to add a service reference to Bing Maps and I believe it is not limited to that. I think it stems from it misunderstanding that enum instance variables cannot be tested for equality using .Equals in VB... not sure why.
I think the solution is to simply replace the offending line:
If Me.enumfield.Equals(value) <> true Then
with
If Not Object.Equals(Me.enumfield ,Value) Then
BTW: DO NOT compare boolean results to
True or
False as they have done!
Use
If boolean_results Then
or
If Not boolean_results Then