internal static string ToSerializedValue(this TransportShipmentTypes value) { switch (value) { case TransportShipmentTypes.CustomerManaged: return("CustomerManaged"); case TransportShipmentTypes.MicrosoftManaged: return("MicrosoftManaged"); } return(null); }
/// <summary> /// Initializes a new instance of the TransportPreferences class. /// </summary> /// <param name="preferredShipmentType">Indicates Shipment Logistics /// type that the customer preferred. Possible values include: /// 'CustomerManaged', 'MicrosoftManaged'</param> public TransportPreferences(TransportShipmentTypes preferredShipmentType) { PreferredShipmentType = preferredShipmentType; CustomInit(); }
public TransportPreferences(TransportShipmentTypes preferredShipmentType) { PreferredShipmentType = preferredShipmentType; }
/// <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="TransportShipmentTypes" />, 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) => TransportShipmentTypes.CreateFrom(sourceValue);