<< Click to Display Table of Contents >>
Login
스크립트가 실행 중인 서버의 리파지토리에 로그인합니다.
Prototype
bool Login(string User, string Password)
Parameters
User |
사용자 ID |
Password |
사용자 패스워드 |
Reference
로그인이 성공한 경우 true가 리턴되고, 실패한 경우 false가 리턴됩니다.
Example
function login(){
var rep = OZCreator.GetBuiltInObject(OZBuiltInObject.REPOSITORY);
var login = rep.Login("admin","admin");
_DEBUG("is login="+login);
rep.Logout();
}