SpreadWebServcie.CreateSubscription Method
创建一个联系人列表.
public bool createSubscription
(
string loginEmail,
string
password,
string subscriptionName,
string description,
)
参数
参数
|
类型
|
描述
|
loginEmail
|
String
|
Spread账号邮件地址.
|
password
|
String
|
Spread账号的登录密码或者 API Key.
|
subscriptionName
|
String
|
被创建联系人列表的名称.
|
description
|
String
|
被创建联系人列表的描述.
|
返回结果
True
成功,否则,False.
例子
string
loginName
= "spread@reasonables.com";
string
loginPassword
= "spread";
string
myNewSubsciption
= "NoClone VIP";
string
myNewDiscription
= "NoClone VIPs
are added to here.";
bool
isSuccessful;
//Create a SpreadWebService
object and use its method.
SpreadWebService MySpread = new
SpreadWebService();
isSuccessful
= MySpread.createCampaign (loginName, loginPassword, subscriptionName, description);
参见
SpreadWebService
Class | Spread Web Service Namespace