Just like socket Begin\End methods use IOCP, would that also be true for SSLStream Begin\End Read\Write methods
if not how do you get a tcp\ip server on SSL to scale
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Since the
SslStreampresumably is wrapped around a regularSocketStreamI would say this is highly likely, because at some point the asyncSslStreamis going to have to perform a read on the underlying stream. It is only logical that it would implement this in terms of an async read on the underlying stream.Having said that I cannot give you a 100% certain answer, but unless you are prepared to go with an SSL library or ‘implement your own’, even if it didn’t, would that deter you from using the
SslStream?