Amazon.S3.S3Region.FindValue C# (CSharp) Méthode

FindValue() public static méthode

Finds the constant for the unique value.
public static FindValue ( string value ) : S3Region
value string
Résultat S3Region
        public static S3Region FindValue(string value)
        {
            if (value == null)
                return S3Region.US;

            return FindValue<S3Region>(value);
        }