Skip Navigation Links.
展开 最小化

SpreadWebServcie.NameExists Method

下面例子展示了如何验证一个账号名称在Spread中是否已注册.

参数

参数

类型

描述

loginEmail

String

Spread账号的登录邮箱.

APIKey

String

Spread账号的密码或者API Key.

accountName

String

被验证的账号名称.

返回结果

True 如果存在,否则false.

例子

string loginEmail = "Spread@reasonables.com";

string APIKey = "Spread";

string accountName ="testAccount";

SpreadAPI.SpreadWebService MySpread = new SpreadAPI.SpreadWebService();

bool  result = MySpread.NameExists (loginEmail, APIKey,accountName );

Dim logingName As String = Spread@reasonables.com

Dim APIKey As String = "spread"

Dim accountName As String = "testAccount"

Dim MySpread As New SpreadWS.SpreadWebService()

Dim result = MySpread.NameExists(logingName, APIKey, accountName)

  /**
    * @name     NameExists
    * @function Validate Name exists(This method is only for reseller.)
    * @param
    *  loginEmail     The login email of your Spread account.
    *  APIKey 	      Spread account API Key.
    *  accountName    New account name.
    *  @return
    *  		true if exists.Otherwise,false.
    */
    public function NameExists($loginEmail,$APIKey,$accountName){
        $paraArray = array(
	            'loginEmail' 	=> $loginEmail,
	            'APIKey'            => $APIKey,
		    'accountName'       => $accountName
        );
        $Client = new SoapClient("http://service.rspread.com/Service.asmx?WSDL");
        Return $Client -> NameExists( $paraArray );
    }
         
No sample.