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

UserRoleManager() public méthode

Initializes the manager to use the specified directory.
public UserRoleManager ( string directory ) : System
directory string
Résultat System
        public UserRoleManager(string directory)
        {
            if (directory == null)
            {
                throw new ArgumentNullException("directory");
            }

            directory = Utils.GetAbsoluteDirectoryPath(directory, false, false, false);

            if (directory == null)
            {
                throw new ArgumentException("Specified user user role directory does not exist.", "directory");
            }

            m_directory = new DirectoryInfo(directory);
        }