Пример #1
0
        internal static TableServiceStatistics DeserializeTableServiceStatistics(XElement element)
        {
            TableGeoReplicationInfo geoReplication = default;

            if (element.Element("GeoReplication") is XElement geoReplicationElement)
            {
                geoReplication = TableGeoReplicationInfo.DeserializeTableGeoReplicationInfo(geoReplicationElement);
            }
            return(new TableServiceStatistics(geoReplication));
        }
 public static TableServiceStatistics TableServiceStatistics(TableGeoReplicationInfo geoReplication = null)
 {
     return(new TableServiceStatistics(geoReplication));
 }