QuickOPC User's Guide and Reference
GetCertificateSubjectName Method (IEasyUAClientServerApplicationExtension)
Example 



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.Application.Extensions Namespace > IEasyUAClientServerApplicationExtension Class : GetCertificateSubjectName Method
The OPC UA client/server application object that will perform the operation.
Gets the subject distinguished name the application is configured to use for its certificates.
Syntax
'Declaration
 
<ExtensionAttribute()>
<NotNullAttribute()>
Public Shared Function GetCertificateSubjectName( _
   ByVal application As IEasyUAClientServerApplication _
) As String
'Usage
 
Dim application As IEasyUAClientServerApplication
Dim value As String
 
value = IEasyUAClientServerApplicationExtension.GetCertificateSubjectName(application)
[Extension()]
[NotNull()]
public static string GetCertificateSubjectName( 
   IEasyUAClientServerApplication application
)
[Extension()]
[NotNull()]
public:
static String^ GetCertificateSubjectName( 
   IEasyUAClientServerApplication^ application
) 

Parameters

application
The OPC UA client/server application object that will perform the operation.

Return Value

Returns the subject distinguished name.
Exceptions
ExceptionDescription

A null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument.

This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception.

The OPC UA operation has failed. This operation exception in uniformly used to allow common handling of various kinds of errors. The System.Exception.InnerException always contains information about the actual error cause.

This is an operation error that depends on factors external to your program, and thus cannot be always avoided. Your code must handle it appropriately.

Example

.NET

COM

// Shows how to get the subject name of application certificates.

using System;
using OpcLabs.EasyOpc.UA.Application;
using OpcLabs.EasyOpc.UA.Application.Extensions;

namespace UADocExamples.Application._IEasyUAClientServerApplication
{
    class GetCertificateSubjectName
    {
        public static void Main1()
        {
            // Obtain the application interface.
            EasyUAApplication application = EasyUAApplication.Instance;

            // Get the subject name of application certificates.
            string certificateSubjectName = application.GetCertificateSubjectName();

            // Display results
            Console.WriteLine("Certificate subject name: {0}", certificateSubjectName);
        }
    }
}
# Shows how to get the subject name of application certificates.

# The QuickOPC package is needed. Install it using "pip install opclabs_quickopc".
import opclabs_quickopc

# Import .NET namespaces.
from OpcLabs.EasyOpc.UA.Application import *
from OpcLabs.EasyOpc.UA.Application.Extensions import *


# Obtain the application interface.
application = EasyUAApplication.Instance

# Get the subject name of application certificates.
certificateSubjectName = IEasyUAClientServerApplicationExtension.GetCertificateSubjectName(application)

# Display results.
print('Certificate subject name: ', certificateSubjectName, sep='')

print()
print('Finished.')
' Shows how to get the subject name of application certificates.

Imports Microsoft.Extensions.DependencyInjection
Imports OpcLabs.EasyOpc.UA
Imports OpcLabs.EasyOpc.UA.Application
Imports OpcLabs.EasyOpc.UA.Application.ComTypes
Imports OpcLabs.EasyOpc.UA.Application.Extensions

Namespace Application._IEasyUAClientServerApplication
    Friend Class GetCertificateSubjectName
        Public Shared Sub Main1()
            ' Obtain the application interface.
            Dim application As EasyUAApplication = EasyUAApplication.Instance

            ' Get the subject name of application certificates.
            Dim certificateSubjectName = application.GetCertificateSubjectName()

            ' Display results
            Console.WriteLine("Certificate subject name: {0}", certificateSubjectName)
        End Sub
    End Class
End Namespace
// Shows how to get the subject name of application certificates.

class procedure GetCertificateSubjectName.Main;
var
  Application: TEasyUAApplication;
  CertificateSubjectName: string;
begin
  // Obtain the application interface.
  Application := TEasyUAApplication.Create(nil);

  // Get the subject name of application certificates.
  CertificateSubjectName := Application.GetCertificateSubjectName('');

  // Display results
  WriteLn('Certificate subject name: ', CertificateSubjectName);
end;
Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also