var Send=function() {
Send.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Send.prototype={
Gonder:function(name,email,konu,mesaj,succeededCallback, failedCallback, userContext) {
return this._invoke(Send.get_path(), 'Gonder',false,{name:name,email:email,konu:konu,mesaj:mesaj},succeededCallback,failedCallback,userContext); }}
Send.registerClass('Send',Sys.Net.WebServiceProxy);
Send._staticInstance = new Send();
Send.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; Send._staticInstance._path = value; }
Send.get_path = function() { return Send._staticInstance._path; }
Send.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
Send._staticInstance._timeout = value; }
Send.get_timeout = function() { 
return Send._staticInstance._timeout; }
Send.set_defaultUserContext = function(value) { 
Send._staticInstance._userContext = value; }
Send.get_defaultUserContext = function() { 
return Send._staticInstance._userContext; }
Send.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; Send._staticInstance._succeeded = value; }
Send.get_defaultSucceededCallback = function() { 
return Send._staticInstance._succeeded; }
Send.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; Send._staticInstance._failed = value; }
Send.get_defaultFailedCallback = function() { 
return Send._staticInstance._failed; }
Send.set_path("/Send.asmx");
Send.Gonder= function(name,email,konu,mesaj,onSuccess,onFailed,userContext) {Send._staticInstance.Gonder(name,email,konu,mesaj,onSuccess,onFailed,userContext); }
