Opc.Ua.UserRoleManager.DeleteRole C# (CSharp) Méthode

DeleteRole() public static méthode

Deletes a user role file.
public static DeleteRole ( string directory, string roleName ) : void
directory string
roleName string
Résultat void
        public static void DeleteRole(string directory, string roleName)
        {
            string filePath = directory + Path.DirectorySeparatorChar + roleName + m_FileExtension;
            AccessTemplateManager.DeleteFile(filePath);
        }