本文整理汇总了C#中TransactionRequest.Remove方法的典型用法代码示例。如果您正苦于以下问题:C# TransactionRequest.Remove方法的具体用法?C# TransactionRequest.Remove怎么用?C# TransactionRequest.Remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TransactionRequest
的用法示例。
在下文中一共展示了TransactionRequest.Remove方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SetPayWithAlias
/// <summary>
/// Sets the pay with alias. Call CreateAuthorizationParameters first.
/// </summary>
/// <param name="collection">The collection.</param>
/// <param name="alias">The alias.</param>
/// <param name="userAddress">The user address.</param>
/// <param name="userAgent">The user agent.</param>
/// <exception cref="System.ArgumentNullException">collection</exception>
/// <exception cref="System.ArgumentException">
/// The value cannot be empty;alias
/// or
/// The value cannot be empty;userAddress
/// or
/// The value cannot be empty;userAgent
/// </exception>
public void SetPayWithAlias(TransactionRequest collection, string alias, string userAddress, string userAgent)
{
if (collection == null)
throw new ArgumentNullException("collection");
if (string.IsNullOrEmpty(alias))
throw new ArgumentException("The value cannot be empty", "alias");
if (string.IsNullOrEmpty(userAddress))
throw new ArgumentException("The value cannot be empty", "userAddress");
if (string.IsNullOrEmpty(userAgent))
throw new ArgumentException("The value cannot be empty", "userAgent");
collection.Add(Names.Params.Alias, alias);
collection.Add(Names.Params.AliasMode, Names.Params.AliasModeOneClick);
collection.Add(Names.Params.ClientIP, userAddress);
collection.Add(Names.Params.ClientUserAgent, userAgent);
// some keys are not allowed when paying with alias
string[] removeKeys = new string[]
{
Names.Params.Language,
Names.Params.Use3DSecure,
Names.Params.HideClientEmail,
};
foreach (var key in removeKeys)
{
if (collection.ContainsKey(key))
collection.Remove(key);
}
}