我想将 Apple 的 APNS 与 ac# 服务一起使用。服务运行完美。我想要的是来自 Apple 的反馈,如果已将平底锅发送到 Apple。所以我需要的是来自 sslstream 的反馈。
谁能帮助我并告诉我如何从 sslstream 中的服务器获得反馈?
提前致谢
这是我如何将平底锅发送到苹果服务器的代码:
TcpClient client = new TcpClient(hostname, APNS_PORT);
SslStream sslStream = new SslStream(
client.GetStream(),
false,
new RemoteCertificateValidationCallback(ValidateServerCertificate),
null
);
sslStream.AuthenticateAsClient(hostname, certificatesCollection, SslProtocols.Tls, true);
sslStream.Write(array);
sslStream.Flush();