var ProgramInfo=function() {
ProgramInfo.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ProgramInfo.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ProgramInfo._staticInstance.get_path();},
GetTooltip:function(tt,succeededCallback, failedCallback, userContext) {
/// <param name="tt" type="ProgramInfoObject">ProgramInfoObject</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetTooltip',false,{tt:tt},succeededCallback,failedCallback,userContext); }}
ProgramInfo.registerClass('ProgramInfo',Sys.Net.WebServiceProxy);
ProgramInfo._staticInstance = new ProgramInfo();
ProgramInfo.set_path = function(value) {
ProgramInfo._staticInstance.set_path(value); }
ProgramInfo.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return ProgramInfo._staticInstance.get_path();}
ProgramInfo.set_timeout = function(value) {
ProgramInfo._staticInstance.set_timeout(value); }
ProgramInfo.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return ProgramInfo._staticInstance.get_timeout(); }
ProgramInfo.set_defaultUserContext = function(value) { 
ProgramInfo._staticInstance.set_defaultUserContext(value); }
ProgramInfo.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return ProgramInfo._staticInstance.get_defaultUserContext(); }
ProgramInfo.set_defaultSucceededCallback = function(value) { 
 ProgramInfo._staticInstance.set_defaultSucceededCallback(value); }
ProgramInfo.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return ProgramInfo._staticInstance.get_defaultSucceededCallback(); }
ProgramInfo.set_defaultFailedCallback = function(value) { 
ProgramInfo._staticInstance.set_defaultFailedCallback(value); }
ProgramInfo.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return ProgramInfo._staticInstance.get_defaultFailedCallback(); }
ProgramInfo.set_path("/ProgramInfo.asmx");
ProgramInfo.GetTooltip= function(tt,onSuccess,onFailed,userContext) {
/// <param name="tt" type="ProgramInfoObject">ProgramInfoObject</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
ProgramInfo._staticInstance.GetTooltip(tt,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(ProgramInfoObject) === 'undefined') {
var ProgramInfoObject=gtc("ProgramInfoObject");
ProgramInfoObject.registerClass('ProgramInfoObject');
}
