var ControlHtml=function() {
ControlHtml.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ControlHtml.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ControlHtml._staticInstance.get_path();},
GetControlHtml:function(controlName,succeededCallback, failedCallback, userContext) {
/// <param name="controlName" type="String">System.String</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(), 'GetControlHtml',false,{controlName:controlName},succeededCallback,failedCallback,userContext); }}
ControlHtml.registerClass('ControlHtml',Sys.Net.WebServiceProxy);
ControlHtml._staticInstance = new ControlHtml();
ControlHtml.set_path = function(value) {
ControlHtml._staticInstance.set_path(value); }
ControlHtml.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return ControlHtml._staticInstance.get_path();}
ControlHtml.set_timeout = function(value) {
ControlHtml._staticInstance.set_timeout(value); }
ControlHtml.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return ControlHtml._staticInstance.get_timeout(); }
ControlHtml.set_defaultUserContext = function(value) { 
ControlHtml._staticInstance.set_defaultUserContext(value); }
ControlHtml.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return ControlHtml._staticInstance.get_defaultUserContext(); }
ControlHtml.set_defaultSucceededCallback = function(value) { 
 ControlHtml._staticInstance.set_defaultSucceededCallback(value); }
ControlHtml.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return ControlHtml._staticInstance.get_defaultSucceededCallback(); }
ControlHtml.set_defaultFailedCallback = function(value) { 
ControlHtml._staticInstance.set_defaultFailedCallback(value); }
ControlHtml.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return ControlHtml._staticInstance.get_defaultFailedCallback(); }
ControlHtml.set_path("/WebServices/UserControls/ControlHtml.asmx");
ControlHtml.GetControlHtml= function(controlName,onSuccess,onFailed,userContext) {
/// <param name="controlName" type="String">System.String</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>
ControlHtml._staticInstance.GetControlHtml(controlName,onSuccess,onFailed,userContext); }
