You've already forked linux-packaging-mono
Imported Upstream version 5.10.0.47
Former-commit-id: d0813289fa2d35e1f8ed77530acb4fb1df441bc0
This commit is contained in:
parent
88ff76fe28
commit
e46a49ecf1
@ -40,11 +40,11 @@ namespace System.ServiceModel.Configuration
|
||||
set { base[ConfigurationStrings.MsmqProtectionLevel] = value; }
|
||||
}
|
||||
|
||||
[ConfigurationProperty(ConfigurationStrings.MsmqSecureHashAlgorithm, DefaultValue = MsmqDefaults.MsmqSecureHashAlgorithm)]
|
||||
[ConfigurationProperty(ConfigurationStrings.MsmqSecureHashAlgorithm)]
|
||||
[ServiceModelEnumValidator(typeof(MsmqSecureHashAlgorithmHelper))]
|
||||
public MsmqSecureHashAlgorithm MsmqSecureHashAlgorithm
|
||||
{
|
||||
get { return (MsmqSecureHashAlgorithm)base[ConfigurationStrings.MsmqSecureHashAlgorithm]; }
|
||||
get { return (MsmqSecureHashAlgorithm)(base[ConfigurationStrings.MsmqSecureHashAlgorithm] ?? MsmqDefaults.MsmqSecureHashAlgorithm); }
|
||||
set { base[ConfigurationStrings.MsmqSecureHashAlgorithm] = value; }
|
||||
}
|
||||
|
||||
|
@ -23,7 +23,7 @@ namespace System.ServiceModel.Configuration
|
||||
set { base[ConfigurationStrings.RequireClientCertificate] = value; }
|
||||
}
|
||||
|
||||
[ConfigurationProperty(ConfigurationStrings.SslProtocols, DefaultValue = TransportDefaults.SslProtocols)]
|
||||
[ConfigurationProperty(ConfigurationStrings.SslProtocols, DefaultValue = TransportDefaults.OldDefaultSslProtocols)]
|
||||
[ServiceModelEnumValidator(typeof(SslProtocolsHelper))]
|
||||
public SslProtocols SslProtocols
|
||||
{
|
||||
|
@ -40,7 +40,7 @@ namespace System.ServiceModel.Configuration
|
||||
private set { base[ConfigurationStrings.ExtendedProtectionPolicy] = value; }
|
||||
}
|
||||
|
||||
[ConfigurationProperty(ConfigurationStrings.SslProtocols, DefaultValue = TransportDefaults.SslProtocols)]
|
||||
[ConfigurationProperty(ConfigurationStrings.SslProtocols, DefaultValue = TransportDefaults.OldDefaultSslProtocols)]
|
||||
[ServiceModelEnumValidator(typeof(SslProtocolsHelper))]
|
||||
public SslProtocols SslProtocols
|
||||
{
|
||||
|
Reference in New Issue
Block a user