var ArticleCommentUserJoins=function() {
ArticleCommentUserJoins.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ArticleCommentUserJoins.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ArticleCommentUserJoins._staticInstance.get_path();},
Echo:function(text,succeededCallback, failedCallback, userContext) {
/// <param name="text" 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(), 'Echo',false,{text:text},succeededCallback,failedCallback,userContext); },
InsertArticleCommentUserJoin:function(articleCommentID,joinType,succeededCallback, failedCallback, userContext) {
/// <param name="articleCommentID" type="Number">System.Int32</param>
/// <param name="joinType" type="ArticleCommentUserJoinType">ArticleCommentUserJoinType</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(), 'InsertArticleCommentUserJoin',false,{articleCommentID:articleCommentID,joinType:joinType},succeededCallback,failedCallback,userContext); }}
ArticleCommentUserJoins.registerClass('ArticleCommentUserJoins',Sys.Net.WebServiceProxy);
ArticleCommentUserJoins._staticInstance = new ArticleCommentUserJoins();
ArticleCommentUserJoins.set_path = function(value) {
ArticleCommentUserJoins._staticInstance.set_path(value); }
ArticleCommentUserJoins.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return ArticleCommentUserJoins._staticInstance.get_path();}
ArticleCommentUserJoins.set_timeout = function(value) {
ArticleCommentUserJoins._staticInstance.set_timeout(value); }
ArticleCommentUserJoins.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return ArticleCommentUserJoins._staticInstance.get_timeout(); }
ArticleCommentUserJoins.set_defaultUserContext = function(value) { 
ArticleCommentUserJoins._staticInstance.set_defaultUserContext(value); }
ArticleCommentUserJoins.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return ArticleCommentUserJoins._staticInstance.get_defaultUserContext(); }
ArticleCommentUserJoins.set_defaultSucceededCallback = function(value) { 
 ArticleCommentUserJoins._staticInstance.set_defaultSucceededCallback(value); }
ArticleCommentUserJoins.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return ArticleCommentUserJoins._staticInstance.get_defaultSucceededCallback(); }
ArticleCommentUserJoins.set_defaultFailedCallback = function(value) { 
ArticleCommentUserJoins._staticInstance.set_defaultFailedCallback(value); }
ArticleCommentUserJoins.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return ArticleCommentUserJoins._staticInstance.get_defaultFailedCallback(); }
ArticleCommentUserJoins.set_path("/WebServices/ArticleCommentUserJoins.asmx");
ArticleCommentUserJoins.Echo= function(text,onSuccess,onFailed,userContext) {
/// <param name="text" 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>
ArticleCommentUserJoins._staticInstance.Echo(text,onSuccess,onFailed,userContext); }
ArticleCommentUserJoins.InsertArticleCommentUserJoin= function(articleCommentID,joinType,onSuccess,onFailed,userContext) {
/// <param name="articleCommentID" type="Number">System.Int32</param>
/// <param name="joinType" type="ArticleCommentUserJoinType">ArticleCommentUserJoinType</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>
ArticleCommentUserJoins._staticInstance.InsertArticleCommentUserJoin(articleCommentID,joinType,onSuccess,onFailed,userContext); }
if (typeof(ArticleCommentUserJoinType) === 'undefined') {
ArticleCommentUserJoinType = function() { throw Error.invalidOperation(); }
ArticleCommentUserJoinType.prototype = {Lick: 1,Bury: 2}
ArticleCommentUserJoinType.registerEnum('ArticleCommentUserJoinType', true);
}
