当前位置: 首页>>代码示例>>C#>>正文


C# IMwsReader.ReadAttribute方法代码示例

本文整理汇总了C#中IMwsReader.ReadAttribute方法的典型用法代码示例。如果您正苦于以下问题:C# IMwsReader.ReadAttribute方法的具体用法?C# IMwsReader.ReadAttribute怎么用?C# IMwsReader.ReadAttribute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IMwsReader的用法示例。


在下文中一共展示了IMwsReader.ReadAttribute方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ReadFragmentFrom

 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _asin = reader.ReadAttribute<string>("ASIN");
     _status = reader.ReadAttribute<string>("status");
     _allOfferListingsConsidered = reader.Read<bool?>("AllOfferListingsConsidered");
     _product = reader.Read<Product>("Product");
     _error = reader.Read<Error>("Error");
 }
开发者ID:richrabago,项目名称:RichRAppsRepo,代码行数:8,代码来源:GetLowestOfferListingsForASINResult.cs

示例2: ReadFragmentFrom

 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _sellerSKU = reader.ReadAttribute<string>("SellerSKU");
     _status = reader.ReadAttribute<string>("status");
     _product = reader.Read<Product>("Product");
     _error = reader.Read<Error>("Error");
 }
开发者ID:qida,项目名称:UprightBuz,代码行数:7,代码来源:GetMyPriceForSKUResult.cs

示例3: ReadFragmentFrom

 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _marketplaceID = reader.ReadAttribute<string>("MarketplaceID");
     _asin = reader.ReadAttribute<string>("ASIN");
     _itemCondition = reader.ReadAttribute<string>("ItemCondition");
     _status = reader.ReadAttribute<string>("status");
     _identifier = reader.Read<GetLowestPricedOffersAsinIdentifier>("Identifier");
     _summary = reader.Read<Summary>("Summary");
     _offers = reader.Read<ASINOfferDetailList>("Offers");
 }
开发者ID:verveinfotech,项目名称:Innoventory,代码行数:10,代码来源:GetLowestPricedOffersForASINResult.cs

示例4: ReadFragmentFrom

 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _asin = reader.ReadAttribute<string>("ASIN");
     _status = reader.ReadAttribute<string>("status");
     _product = reader.Read<AmazonProduct>("Product");
     _error = reader.Read<Error>("Error");
 }
开发者ID:verveinfotech,项目名称:Innoventory,代码行数:7,代码来源:GetMyPriceForASINResult.cs

示例5: ReadFragmentFrom

 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _condition = reader.ReadAttribute<string>("condition");
     _fulfillmentChannel = reader.ReadAttribute<string>("fulfillmentChannel");
     _offerCount = reader.ReadValue<decimal?>();
 }
开发者ID:verveinfotech,项目名称:Innoventory,代码行数:6,代码来源:OfferCountType.cs

示例6: ReadFragmentFrom

 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _condition = reader.ReadAttribute<string>("condition");
     _landedPrice = reader.Read<MoneyType>("LandedPrice");
     _listingPrice = reader.Read<MoneyType>("ListingPrice");
     _shipping = reader.Read<MoneyType>("Shipping");
     _points = reader.Read<Points>("Points");
 }
开发者ID:richrabago,项目名称:RichRAppsRepo,代码行数:8,代码来源:BuyBoxPriceType.cs

示例7: ReadFragmentFrom

 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _id = reader.ReadAttribute<string>("Id");
     _idType = reader.ReadAttribute<string>("IdType");
     _status = reader.ReadAttribute<string>("status");
     _products = reader.Read<ProductList>("Products");
     _error = reader.Read<Error>("Error");
 }
开发者ID:verveinfotech,项目名称:Innoventory,代码行数:8,代码来源:GetMatchingProductForIdResult.cs

示例8: ReadFragmentFrom

 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _condition = reader.ReadAttribute<string>("condition");
     _value = reader.ReadValue<decimal>();
 }
开发者ID:verveinfotech,项目名称:Innoventory,代码行数:5,代码来源:OfferListingCountType.cs

示例9: ReadFragmentFrom

 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _minimumHours = reader.ReadAttribute<decimal?>("minimumHours");
     _maximumHours = reader.ReadAttribute<decimal?>("maximumHours");
     _availableDate = reader.ReadAttribute<DateTime?>("availableDate");
     _availabilityType = reader.ReadAttribute<string>("availabilityType");
 }
开发者ID:verveinfotech,项目名称:Innoventory,代码行数:7,代码来源:DetailedShippingTimeType.cs

示例10: ReadFragmentFrom

 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _condition = reader.ReadAttribute<string>("condition");
     _subcondition = reader.ReadAttribute<string>("subcondition");
     _belongsToRequester = reader.ReadAttribute<bool?>("belongsToRequester");
     _competitivePriceId = reader.Read<string>("CompetitivePriceId");
     _price = reader.Read<PriceType>("Price");
 }
开发者ID:verveinfotech,项目名称:Innoventory,代码行数:8,代码来源:CompetitivePriceType.cs


注:本文中的IMwsReader.ReadAttribute方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。