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