コード例 #1
0
 public V4ClientSectionRoot(XElement section)
 {
     if (section != null)
     {
         S3 = AWSConfigs.GetObject <V4ClientSection>(section, "s3");
     }
 }
コード例 #2
0
        public V4ClientSectionRoot(XElement section)
        {
            if (section == null)
                return;

            this.S3 = AWSConfigs.GetObject<V4ClientSection>(section, s3Key);
        }
コード例 #3
0
        public MobileAnalyticsConfigSectionRoot(XElement section)
        {
            if (section == null)
            {
                return;
            }

            this.MobileAnalytics = AWSConfigs.GetObject <MobileAnalyticsConfigSection>(section, mobileAnalyticsKey);
        }