AS2ValidationSettings Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AS2ValidationSettings() |
Initializes a new instance of the AS2ValidationSettings class. |
AS2ValidationSettings(Boolean, Boolean, Boolean, Boolean, Boolean, Int32, Boolean, Boolean, String, String) |
Initializes a new instance of the AS2ValidationSettings class. |
AS2ValidationSettings()
Initializes a new instance of the AS2ValidationSettings class.
public AS2ValidationSettings ();
Public Sub New ()
Applies to
AS2ValidationSettings(Boolean, Boolean, Boolean, Boolean, Boolean, Int32, Boolean, Boolean, String, String)
Initializes a new instance of the AS2ValidationSettings class.
public AS2ValidationSettings (bool overrideMessageProperties, bool encryptMessage, bool signMessage, bool compressMessage, bool checkDuplicateMessage, int interchangeDuplicatesValidityDays, bool checkCertificateRevocationListOnSend, bool checkCertificateRevocationListOnReceive, string encryptionAlgorithm, string signingAlgorithm = default);
new Microsoft.Azure.Management.Logic.Models.AS2ValidationSettings : bool * bool * bool * bool * bool * int * bool * bool * string * string -> Microsoft.Azure.Management.Logic.Models.AS2ValidationSettings
Public Sub New (overrideMessageProperties As Boolean, encryptMessage As Boolean, signMessage As Boolean, compressMessage As Boolean, checkDuplicateMessage As Boolean, interchangeDuplicatesValidityDays As Integer, checkCertificateRevocationListOnSend As Boolean, checkCertificateRevocationListOnReceive As Boolean, encryptionAlgorithm As String, Optional signingAlgorithm As String = Nothing)
Parameters
- overrideMessageProperties
- Boolean
The value indicating whether to override incoming message properties with those in agreement.
- encryptMessage
- Boolean
The value indicating whether the message has to be encrypted.
- signMessage
- Boolean
The value indicating whether the message has to be signed.
- compressMessage
- Boolean
The value indicating whether the message has to be compressed.
- checkDuplicateMessage
- Boolean
The value indicating whether to check for duplicate message.
- interchangeDuplicatesValidityDays
- Int32
The number of days to look back for duplicate interchange.
- checkCertificateRevocationListOnSend
- Boolean
The value indicating whether to check for certificate revocation list on send.
- checkCertificateRevocationListOnReceive
- Boolean
The value indicating whether to check for certificate revocation list on receive.
- encryptionAlgorithm
- String
The encryption algorithm. Possible values include: 'NotSpecified', 'None', 'DES3', 'RC2', 'AES128', 'AES192', 'AES256'
- signingAlgorithm
- String
The signing algorithm. Possible values include: 'NotSpecified', 'Default', 'SHA1', 'SHA2256', 'SHA2384', 'SHA2512'
Applies to
Azure SDK for .NET