I have the following method signature being exposed via WCF:
public void MethodA(RequestBase request)
{
}
public class RequestA : RequestBase
{
}
There are some concrete classes derived from the RequestBase Class. During the service call using WcfTestClient.exe, how do i pass the actual concrete class (RequestA) to the RequestBase in methodA ?