J
J. L. Goddard
1) Do c# web methods support default parameters ?
2) Can a web method, or a c# method such as:
public nullTest( int i )
{
return i++;
}
Can the web service consumer pass in a value of nullTest(null) ?
3) What if the web service is passing in a series of records where some
of the data for that parameter is null ? How should a null be passed
to the web service ?
2) Can a web method, or a c# method such as:
public nullTest( int i )
{
return i++;
}
Can the web service consumer pass in a value of nullTest(null) ?
3) What if the web service is passing in a series of records where some
of the data for that parameter is null ? How should a null be passed
to the web service ?