c# - how to pass baseclass/inheritedClass as web-service parameter? -
i'd in c# :
public bool method(baseclass ) { ... }
with classes:
abstract baseclass ; inheritedclass1 , inherited class2.
i'm trying pass object inhertited classes
<baseclass xsi:type="inheritedclass1" > .... </baseclass>
but while executing soapui got no answer @ not error.
i tried xmlinclude without success.
how can done?
Comments
Post a Comment