示例#1
0
        internal static string ToSerializedValue(this BackupItemStatus value)
        {
            switch (value)
            {
            case BackupItemStatus.InProgress:
                return("InProgress");

            case BackupItemStatus.Failed:
                return("Failed");

            case BackupItemStatus.Succeeded:
                return("Succeeded");

            case BackupItemStatus.TimedOut:
                return("TimedOut");

            case BackupItemStatus.Created:
                return("Created");

            case BackupItemStatus.Skipped:
                return("Skipped");

            case BackupItemStatus.PartiallySucceeded:
                return("PartiallySucceeded");

            case BackupItemStatus.DeleteInProgress:
                return("DeleteInProgress");

            case BackupItemStatus.DeleteFailed:
                return("DeleteFailed");

            case BackupItemStatus.Deleted:
                return("Deleted");
            }
            return(null);
        }
 public static string ToSerialString(this BackupItemStatus value) => value switch
 {
 /// <summary>
 /// Converts the <see cref="sourceValue" /> parameter to the <see cref="destinationType" /> parameter using <see cref="formatProvider"
 /// /> and <see cref="ignoreCase" />
 /// </summary>
 /// <param name="sourceValue">the <see cref="System.Object"/> to convert from</param>
 /// <param name="destinationType">the <see cref="System.Type" /> to convert to</param>
 /// <param name="formatProvider">not used by this TypeConverter.</param>
 /// <param name="ignoreCase">when set to <c>true</c>, will ignore the case when converting.</param>
 /// <returns>
 /// an instance of <see cref="BackupItemStatus" />, or <c>null</c> if there is no suitable conversion.
 /// </returns>
 public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => BackupItemStatus.CreateFrom(sourceValue);