p4.net

P4.Net and P4CHARSET

﹥>﹥吖頭↗ 提交于 2019-12-20 02:29:35
问题 I'm using P4.Net to connect to my non-unicode server however some commands i run fail with: "Unicode clients require a unicode enabled server." how do i change the P4CHARSET to none in P4.Net? I've tried P4Connection p4 = new P4Connection(); p4.Charset = "none" p4.Connect() i've also tried changing the Charset just before the p4.Run command: p4.Charset = "none" p4.Run("where", "c:\\some\\random\\dir"); i've tried setting the Charset to "none", null and "". if i try passing global options to

P4.Net and P4CHARSET

余生颓废 提交于 2019-12-01 22:48:28
I'm using P4.Net to connect to my non-unicode server however some commands i run fail with: "Unicode clients require a unicode enabled server." how do i change the P4CHARSET to none in P4.Net? I've tried P4Connection p4 = new P4Connection(); p4.Charset = "none" p4.Connect() i've also tried changing the Charset just before the p4.Run command: p4.Charset = "none" p4.Run("where", "c:\\some\\random\\dir"); i've tried setting the Charset to "none", null and "". if i try passing global options to the p4.Run command it doesn't work either. ie. p4.Run("-C none where", "c:\\some\\random\\dir"); fails