You've already forked linux-packaging-mono
Imported Upstream version 4.4.0.182
Former-commit-id: ea38b2115ac3af9a394fe6cddf2be2acd11bc002
This commit is contained in:
parent
ee13743634
commit
180e8b1935
@ -12,12 +12,20 @@ using System.Collections.Generic;
|
||||
|
||||
namespace System.Net {
|
||||
|
||||
/*
|
||||
* The idea behind this API was to let the application filter the set of cipher suites received / send to
|
||||
* the remote side. This concept does not any longer work with the new native implementations.
|
||||
*/
|
||||
|
||||
[Obsolete ("This API is no longer supported.")]
|
||||
public delegate IEnumerable<string> CipherSuitesCallback (SecurityProtocolType protocol, IEnumerable<string> allCiphers);
|
||||
|
||||
public partial class ServicePointManager {
|
||||
|
||||
[Obsolete ("This API is no longer supported.", true)]
|
||||
public static CipherSuitesCallback ClientCipherSuitesCallback { get; set; }
|
||||
|
||||
[Obsolete ("This API is no longer supported.", true)]
|
||||
public static CipherSuitesCallback ServerCipherSuitesCallback { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user