Exemplo n.º 1
0
        internal static string ToSerializedValue(this CertificateOrderStatus value)
        {
            switch (value)
            {
            case CertificateOrderStatus.Pendingissuance:
                return("Pendingissuance");

            case CertificateOrderStatus.Issued:
                return("Issued");

            case CertificateOrderStatus.Revoked:
                return("Revoked");

            case CertificateOrderStatus.Canceled:
                return("Canceled");

            case CertificateOrderStatus.Denied:
                return("Denied");

            case CertificateOrderStatus.Pendingrevocation:
                return("Pendingrevocation");

            case CertificateOrderStatus.PendingRekey:
                return("PendingRekey");

            case CertificateOrderStatus.Unused:
                return("Unused");

            case CertificateOrderStatus.Expired:
                return("Expired");

            case CertificateOrderStatus.NotSubmitted:
                return("NotSubmitted");
            }
            return(null);
        }
 /// <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="CertificateOrderStatus" />, 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) => CertificateOrderStatus.CreateFrom(sourceValue);
 public static string ToSerialString(this CertificateOrderStatus value) => value switch
 {