PayPal.Api.CreditCard.Delete C# (CSharp) Метод

Delete() публичный Метод

Delete the Credit Card resource for the given identifier.
public Delete ( APIContext apiContext ) : void
apiContext APIContext APIContext used for the API call.
Результат void
        public void Delete(APIContext apiContext)
        {
            CreditCard.Delete(apiContext, this.id);
        }

Same methods

CreditCard::Delete ( APIContext apiContext, string creditCardId ) : void

Usage Example

Пример #1
0
 /// <summary>
 /// Delete the Credit Card resource for the given identifier.
 /// </summary>
 /// <param name="apiContext">APIContext used for the API call.</param>
 public void Delete(APIContext apiContext)
 {
     CreditCard.Delete(apiContext, this.id);
 }