我试图启动一个新界面(VB.NET):
<WebMethod()>
Public Sub KOSAufruf(<XmlElement(DataType:="base64Binary")> abc As Byte)
End Sub
以下错误抛出给我:
'base64Binary' is a invalid value for XmlElementAttribute.DataType
'base64Binary' can not convert into 'System.Byte'
我该如何解决?我正好需要接口参数(因为我有一个wsdl,我将其转换为serverInterface)。