C# Class Opc.Ua.Security.Audit

A class which is used to report events which have security implications.
ファイルを表示 Open project: OPCFoundation/UA-.NETStandardLibrary

Public Methods

Method Description
SecureChannelCreated ( string implementationInfo, string endpointUrl, string secureChannelId, EndpointDescription endpoint, X509Certificate2 clientCertificate, X509Certificate2 serverCertificate, BinaryEncodingSupport encodingSupport ) : void

Called when a secure channel is created by the client.

SecureChannelRenewed ( string implementationInfo, string secureChannelId ) : void

Called when a secure channel is renewed by the client.

Method Details

SecureChannelCreated() public static method

Called when a secure channel is created by the client.
public static SecureChannelCreated ( string implementationInfo, string endpointUrl, string secureChannelId, EndpointDescription endpoint, X509Certificate2 clientCertificate, X509Certificate2 serverCertificate, BinaryEncodingSupport encodingSupport ) : void
implementationInfo string Information about the secure channel implementation.
endpointUrl string The identifier assigned to the secure channel
secureChannelId string The identifier assigned to the secure channel
endpoint EndpointDescription The endpoint.
clientCertificate System.Security.Cryptography.X509Certificates.X509Certificate2 The client certificate.
serverCertificate System.Security.Cryptography.X509Certificates.X509Certificate2 The server certificate.
encodingSupport BinaryEncodingSupport The type of encoding supported by the channel.
return void

SecureChannelRenewed() public static method

Called when a secure channel is renewed by the client.
public static SecureChannelRenewed ( string implementationInfo, string secureChannelId ) : void
implementationInfo string Information about the secure channel implementation.
secureChannelId string The identifier assigned to the secure channel.
return void