Opc.Ua.Gds.CredentialManagementState.InitializeOptionalChildren C# (CSharp) Méthode

InitializeOptionalChildren() protected méthode

Initializes the any option children defined for the instance.
protected InitializeOptionalChildren ( ISystemContext context ) : void
context ISystemContext
Résultat void
        protected override void InitializeOptionalChildren(ISystemContext context)
        {
            base.InitializeOptionalChildren(context);

            if (RevokeCredential != null)
            {
                RevokeCredential.Initialize(context, RevokeCredential_InitializationString);
            }

            if (RequestAccessToken != null)
            {
                RequestAccessToken.Initialize(context, RequestAccessToken_InitializationString);
            }
        }