Amazon.DNXCore.IntegrationTests.General.GetConfig C# (CSharp) Method

GetConfig() private method

private GetConfig ( object client ) : ClientConfig
client object
return Amazon.Runtime.ClientConfig
        private ClientConfig GetConfig(object client)
        {
            var configProperty = typeof(AmazonServiceClient).GetTypeInfo().GetDeclaredProperty("Config");
            var config = configProperty.GetValue(client, null) as ClientConfig;
            return config;

        }
        private static Action GetClientAction(object client, string methodName, object request)