@Diason wrote:
Using the C# api, how to insert the device brand or model information to the user agent?
I want to achieve something like:int osMajor = 6; int osMinor = 2; string strBrand = "Dell "; string srtModel = "Inspiron"; string UA = "Mozilla/5.0 (Windows NT " + osMajor + "." + osMinor + "; WOW64; en-US;" + strBrand + srtModel + ")";
Posts: 2
Participants: 2