Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
make constructor private
  • Loading branch information
wfurt committed Jul 11, 2021
commit f53c003ff7dd68139fce3a3e78aed5ee241b7fd1
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ public static SslCertificateTrust CreateForX509Store(
public static SslCertificateTrust CreateForX509Collection(
System.Security.Cryptography.X509Certificates.X509Certificate2Collection trustList,
bool sendTrustInHandshake = false) { throw null; }
private SslCertificateTrust() { throw null; }
}

public sealed partial class SslStreamCertificateContext
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,7 @@ public static SslCertificateTrust CreateForX509Collection(X509Certificate2Collec
trust._sendTrustInHandshake = sendTrustInHandshake;
return trust;
}

private SslCertificateTrust() { }
}
}