WebServiceCall Constructor |
Namespace: com.softwarekey.Client.WebServiceAssembly: PLUSManaged (in PLUSManaged.dll) Version: 5.23.4.0
Syntaxpublic WebServiceCall(
string className,
string methodName,
SoapHttpClientProtocol client,
AuthorEncryptionKey encryptionKey
)
Public Sub New (
className As String,
methodName As String,
client As SoapHttpClientProtocol,
encryptionKey As AuthorEncryptionKey
)
public:
WebServiceCall(
String^ className,
String^ methodName,
SoapHttpClientProtocol^ client,
AuthorEncryptionKey^ encryptionKey
)
Parameters
- className
- Type: SystemString
The name of the web service client class. - methodName
- Type: SystemString
The name of the web service method to be called. - client
- Type: System.Web.Services.ProtocolsSoapHttpClientProtocol
For .NET Framework, the System.Web.Services.Protocols.SoapHttpClientProtocol object used to make the web service method calls.
When using the .NET Standard 2.0 assembly, the XmlWebService object used to make the web service method calls. - encryptionKey
- Type: com.softwarekey.Client.UtilsAuthorEncryptionKey
The pre-initialized AuthorEncryptionKey object, which is required for cryptographic routines.
See Also