Vb.net My.Computer.Network.DownloadFile错误ssl/tls

Vb.net My.Computer.Network.DownloadFile错误ssl/tls,vb.net,Vb.net,此异常最初是在此调用堆栈中引发的: System.Net.Security.SSLSState.StartSendAuthResetSignal(System.Net.Security.ProtocolToken、System.Net.AsyncProtocolRequest、System.Exception) System.Net.Security.SslState.CheckCompletionBeforeNextReceive(System.Net.Security.ProtocolTok

此异常最初是在此调用堆栈中引发的:

System.Net.Security.SSLSState.StartSendAuthResetSignal(System.Net.Security.ProtocolToken、System.Net.AsyncProtocolRequest、System.Exception) System.Net.Security.SslState.CheckCompletionBeforeNextReceive(System.Net.Security.ProtocolToken、System.Net.AsyncProtocolRequest) System.Net.Security.SslState.StartSendBlob(字节[],int,System.Net.AsyncProtocolRequest) System.Net.Security.SslState.ProcessReceivedBlob(字节[],int,System.Net.AsyncProtocolRequest) System.Net.Security.SslState.StartReadFrame(字节[],int,System.Net.AsyncProtocolRequest) System.Net.Security.SslState.StartReceiveBlob(字节[],System.Net.AsyncProtocolRequest) System.Net.Security.SslState.CheckCompletionBeforeNextReceive(System.Net.Security.ProtocolToken、System.Net.AsyncProtocolRequest) System.Net.Security.SslState.StartSendBlob(字节[],int,System.Net.AsyncProtocolRequest) System.Net.Security.SslState.ProcessReceivedBlob(字节[],int,System.Net.AsyncProtocolRequest) System.Net.Security.SslState.StartReadFrame(字节[],int,System.Net.AsyncProtocolRequest) …
[调用堆栈被截断]

这是我的密码

Public Sub verifcar()
        If File.Exists("C:\Users\Public\datosapp\temp\ver datos.csv") Then
            My.Computer.FileSystem.DeleteFile("C:\Users\Public\datosapp\temp\ver datos.csv")
        End If

        Dim vert As String
        
        vert = "https://xxxx.com/api/table.csv?content=sensors&columns=objid,group,device,sensor,lastvalue&id=" + id3 + "&username=xxxxxx&password=xxxxx"
        My.Computer.Network.DownloadFile(
           vert,
        "C:\Users\Public\datosapp\temp\ver datos.csv")

        leer2()
    End Sub