當前位置: 首頁>>代碼示例>>C#>>正文


C# XmlTextWriter.WriteElementIntIfProvided方法代碼示例

本文整理匯總了C#中System.Xml.XmlTextWriter.WriteElementIntIfProvided方法的典型用法代碼示例。如果您正苦於以下問題:C# XmlTextWriter.WriteElementIntIfProvided方法的具體用法?C# XmlTextWriter.WriteElementIntIfProvided怎麽用?C# XmlTextWriter.WriteElementIntIfProvided使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Xml.XmlTextWriter的用法示例。


在下文中一共展示了XmlTextWriter.WriteElementIntIfProvided方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: WriteDiscountElements

 private void WriteDiscountElements(XmlTextWriter writer)
 {
     writer.WriteElementEnum(DiscountTypeElement, Type);
     switch(Type)
     {
         case DiscountType.Percent:
             writer.WriteElementIntIfProvided(DiscountPercentElement, DiscountPercent);
             break;
         case DiscountType.Dollars:
             writer.WriteStartElement(DiscountInCentsElement);
             foreach(var item in DiscountInCents)
             {
                 writer.WriteElementString(item.Currency, item.AmountInCents.ToString(CultureInfo.InvariantCulture));
             }
             writer.WriteEndElement();
             break;
     }
 }
開發者ID:ryanande,項目名稱:recurly-client-net,代碼行數:18,代碼來源:RecurlyCoupon.cs

示例2: WriteXml

        internal void WriteXml(XmlTextWriter writer)
        {
            writer.WriteStartElement(ElementName);
                writer.WriteElementString(CouponCodeElement, CouponCode);
                writer.WriteElementString(NameElement,Name);
                writer.WriteElementStringIfProvided(HostedDescriptionElement,HostedDescription);
                writer.WriteElementStringIfProvided(InvoiceDescriptionElement, InvoiceDescription);
                writer.WriteElementDateTimeIfProvided(RedeemByDateElement, RedeemByDate);
                writer.WriteElementString(SingleUseElement, SingleUse.ToString());
                writer.WriteElementIntIfProvided(AppliesForMonthsElement,AppliesForMonths);
                writer.WriteElementString(MaxRedemptionsElement, MaxRedemptions.ToString(CultureInfo.InvariantCulture));
                WriteDiscountElements(writer);
                if(!AppliesToAllPlans)
                {
                    writer.WriteElementString(AppliesToAllPlansElement, AppliesToAllPlans.ToString());
                    writer.WriteElementList(PlanCodeListElement, PlanCodes, WritePlanCodeItem);
                }

            writer.WriteEndElement();
        }
開發者ID:ryanande,項目名稱:recurly-client-net,代碼行數:20,代碼來源:RecurlyCoupon.cs

示例3: WriteCreateXml

 protected void WriteCreateXml(XmlTextWriter writer, RecurlyAccount account, string couponCode, int? billingCycles, DateTime? firstRenewalDate)
 {
     writer.WriteStartElement(ElementName); // Start: subscription
         writer.WriteElementString(PlanCodeElement, PlanCode); //Required
         account.WriteXml(writer); //Required
         writer.WriteElementStringIfProvided(CouponCodeElement,couponCode);
         writer.WriteElementIntIfProvided(UnitAmountInCentsElement, UnitAmountInCents);
         writer.WriteElementString(CurrencyElement,Currency); //Required
         writer.WriteElementIntIfProvided(QuantityElement, Quantity > 1 ? Quantity : new int?());
         writer.WriteElementDateTimeIfProvided(TrialEndsAtElement, TrialEndsAt);
         writer.WriteElementDateTimeIfFuture(StartsAtElement,ActivatedAt);
         writer.WriteElementIntIfProvided(TotalBillingCyclesElement, billingCycles);
         writer.WriteElementDateTimeIfProvided(FirstRenewalDateElement, firstRenewalDate);
         writer.WriteElementListIfAny(AddonsElement, Addons, (w, a) => a.WriteXml(w));
         WriteManualInvoiceElement(writer);
     writer.WriteEndElement(); // End: subscription
 }
開發者ID:ryanande,項目名稱:recurly-client-net,代碼行數:17,代碼來源:RecurlySubscription.cs

示例4: WriteChangeXml

 protected void WriteChangeXml(XmlTextWriter writer, ChangeTimeframe timeframe, string newPlanCode)
 {
     writer.WriteStartElement(ElementName); // Start: subscription
         writer.WriteElementEnum("timeframe", timeframe); //Required
         writer.WriteElementStringIfProvided(PlanCodeElement, newPlanCode);
         writer.WriteElementIntIfProvided(QuantityElement,Quantity);
         writer.WriteElementIntIfProvided(UnitAmountInCentsElement,UnitAmountInCents);
         writer.WriteElementListIfAny(AddonsElement, Addons, (w, a) => a.WriteXml(w));
         WriteManualInvoiceElement(writer);
     writer.WriteEndElement(); // End: subscription
 }
開發者ID:ryanande,項目名稱:recurly-client-net,代碼行數:11,代碼來源:RecurlySubscription.cs

示例5: WriteXml

 private void WriteXml(XmlTextWriter writer)
 {
     writer.WriteStartElement(ElementName);
         //writer.WriteElementString(AccountCodeCreateElement,AccountCode); //Shows required in API documentation but is not sent in the PHP client
         writer.WriteElementString(CurrencyElement,Currency);
         writer.WriteElementString(UnitAmountInCentsElement,UnitAmountInCents.ToString(CultureInfo.InvariantCulture));
         writer.WriteElementStringIfProvided(DescriptionElement,Description);
         writer.WriteElementIntIfProvided(QuantityElement,Quantity > 1 ? Quantity : new int?());
         writer.WriteElementStringIfProvided(AccountingCodeElement,AccountingCode);
     writer.WriteEndElement();
 }
開發者ID:ryanande,項目名稱:recurly-client-net,代碼行數:11,代碼來源:RecurlyAdjustment.cs

示例6: WriteXml

 internal void WriteXml(XmlTextWriter writer)
 {
     writer.WriteStartElement(ElementName);
         writer.WriteElementString(AddonCodeElement,AddonCode);
         writer.WriteElementString(UnitAmountInCentsElement, UnitAmountInCents.ToString());
         writer.WriteElementIntIfProvided(QuantityElement,Quantity);
     writer.WriteEndElement();
 }
開發者ID:ryanande,項目名稱:recurly-client-net,代碼行數:8,代碼來源:RecurlySubscriptionAddon.cs


注:本文中的System.Xml.XmlTextWriter.WriteElementIntIfProvided方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。