コード例 #1
0
        internal static string register(string username, string password)
        {
            //Creating connection to Authenicator services
            AuthenticatorInterfaceConn();

            return(authenticatorAccessInterface.Register(username, password));
        }
コード例 #2
0
        /*
         * @param both strings userName, password
         * @returns register status string
         *
         */

        internal static string register(string userName, string password)
        {
            string status;

            //Interaction with channel factory class to access Authenticator services
            AuthenticatorInterfaceConn();

            status = authenticatorAccessInterface.Register(userName, password);

            return(status);
        }