IBdcSoapHttpClientProtocolExtension.Invoke Method
Invokes an XML Web service method synchronously using SOAP.
Namespace: Microsoft.BusinessData.SystemSpecific
Assembly: Microsoft.BusinessData (in Microsoft.BusinessData.dll)
Syntax
'Declaration
Function Invoke ( _
methodName As String, _
parameters As Object() _
) As Object()
'Usage
Dim instance As IBdcSoapHttpClientProtocolExtension
Dim methodName As String
Dim parameters As Object()
Dim returnValue As Object()
returnValue = instance.Invoke(methodName, _
parameters)
Object[] Invoke(
string methodName,
Object[] parameters
)
Parameters
methodName
Type: System.StringThe name of the XML Web service method.
parameters
Type: []An array of objects that contains the parameters to pass to the XML Web service. The order of the values in the array corresponds to the order of the parameters in the calling method of the implementation class.
Return Value
Type: []
An array of objects that contains the return value and any reference or out parameters of the implementation class method.
See Also
Reference
IBdcSoapHttpClientProtocolExtension Interface