You've already forked linux-packaging-mono
Imported Upstream version 4.4.2.4
Former-commit-id: 92904c9c5915c37244316e42ba99e7b934ed7ee2
This commit is contained in:
parent
589d484eee
commit
0b4a830db1
@ -43,16 +43,21 @@ namespace System.ServiceModel.Channels
|
||||
{
|
||||
public SslStreamSecurityBindingElement ()
|
||||
{
|
||||
#if !MOBILE && !XAMMAC_4_5
|
||||
verifier = IdentityVerifier.CreateDefault ();
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !MOBILE && !XAMMAC_4_5
|
||||
IdentityVerifier verifier;
|
||||
bool require_client_certificate;
|
||||
|
||||
public IdentityVerifier IdentityVerifier {
|
||||
get { return verifier; }
|
||||
set { verifier = value; }
|
||||
}
|
||||
#endif
|
||||
|
||||
bool require_client_certificate;
|
||||
|
||||
public bool RequireClientCertificate {
|
||||
get { return require_client_certificate; }
|
||||
@ -63,10 +68,13 @@ namespace System.ServiceModel.Channels
|
||||
SslStreamSecurityBindingElement other)
|
||||
: base (other)
|
||||
{
|
||||
#if !MOBILE && !XAMMAC_4_5
|
||||
verifier = other.verifier;
|
||||
#endif
|
||||
require_client_certificate = other.require_client_certificate;
|
||||
}
|
||||
|
||||
#if !MOBILE && !XAMMAC_4_5
|
||||
[MonoTODO]
|
||||
public StreamUpgradeProvider BuildClientStreamUpgradeProvider (BindingContext context)
|
||||
{
|
||||
@ -87,6 +95,7 @@ namespace System.ServiceModel.Channels
|
||||
"msf", "SslTransportSecurity", PolicyImportHelper.FramingPolicyNS);
|
||||
return element;
|
||||
}
|
||||
#endif
|
||||
|
||||
[MonoTODO]
|
||||
public override IChannelFactory<TChannel>
|
||||
@ -96,6 +105,7 @@ namespace System.ServiceModel.Channels
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
#if !MOBILE && !XAMMAC_4_5
|
||||
[MonoTODO]
|
||||
public override IChannelListener<TChannel>
|
||||
BuildChannelListener<TChannel> (
|
||||
@ -103,6 +113,7 @@ namespace System.ServiceModel.Channels
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
#endif
|
||||
|
||||
[MonoTODO]
|
||||
public override bool CanBuildChannelFactory<TChannel> (
|
||||
@ -111,12 +122,14 @@ namespace System.ServiceModel.Channels
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
#if !MOBILE && !XAMMAC_4_5
|
||||
[MonoTODO]
|
||||
public override bool CanBuildChannelListener<TChannel> (
|
||||
BindingContext context)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
#endif
|
||||
|
||||
public override BindingElement Clone ()
|
||||
{
|
||||
@ -129,6 +142,7 @@ namespace System.ServiceModel.Channels
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
#if !MOBILE && !XAMMAC_4_5
|
||||
#region explicit interface implementations
|
||||
[MonoTODO]
|
||||
void IPolicyExportExtension.ExportPolicy (
|
||||
@ -140,5 +154,6 @@ namespace System.ServiceModel.Channels
|
||||
context.GetBindingAssertions ().Add (transportBinding);
|
||||
}
|
||||
#endregion
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user