AmazonMWS1.MarketplaceWebServiceProductsConfig.WithUserAgent C# (CSharp) Method

WithUserAgent() public method

Sets the UserAgent property
public WithUserAgent ( String applicationName, String applicationVersion ) : MarketplaceWebServiceProductsConfig
applicationName String Your application's name, e.g. "MyMWSApp"
applicationVersion String Your application's version, e.g. "1.0"
return MarketplaceWebServiceProductsConfig
        public MarketplaceWebServiceProductsConfig WithUserAgent(String applicationName, String applicationVersion)
        {
            this.ConfigureUserAgentHeader(applicationName, applicationVersion);
            return this;
        }