本文整理汇总了C#中IRestClient.Post方法的典型用法代码示例。如果您正苦于以下问题:C# IRestClient.Post方法的具体用法?C# IRestClient.Post怎么用?C# IRestClient.Post使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IRestClient
的用法示例。
在下文中一共展示了IRestClient.Post方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Service_is_not_singleton
public void Service_is_not_singleton(IRestClient client)
{
for (int i = 0; i < 5; i++)
{
var response = client.Post<ServiceCreationResponse>("notsingleton", new ServiceCreation() { });
Assert.That(response.RequestCount, Is.EqualTo(1));
}
}
示例2: InvalidLogin
private static void InvalidLogin(IRestClient sericeClient)
{
try
{
Console.WriteLine("Example Invalid Login");
var request = new Login() {Username = "chris", Password = "xxx"};
var user = sericeClient.Post<SecurityUser>(request);
}
catch (WebServiceException webEx)
{
Console.WriteLine("Caught Exception:");
Console.WriteLine(webEx.ToString());
}
}
示例3: BadLoginWithThrownException
private static void BadLoginWithThrownException(IRestClient sericeClient)
{
Console.WriteLine("Bad login with thrown exception:");
try
{
Console.WriteLine("Example Invalid Login");
var response = sericeClient.Post<Login2Response>("/security/login2",
new Login2 {Username = "Bchris", Password = "xxx"});
}
catch (WebServiceException webEx)
{
Console.WriteLine("Caught Exception:");
Console.WriteLine(webEx.ToString());
}
}
示例4: SuccessfulLogin2ShowsAlternativeReturnFormat
private static void SuccessfulLogin2ShowsAlternativeReturnFormat(IRestClient sericeClient)
{
Console.WriteLine("Login successfully using Login2:");
var response = sericeClient.Post<Login2Response>("/security/login2",
new Login2 {Username = "chris", Password = "sirhc"});
response.PrintDump();
}
示例5: SuccessfulLogin
private static void SuccessfulLogin(IRestClient sericeClient)
{
Console.WriteLine("Example Successful Login:");
var request = new Login() {Username = "chris", Password = "sirhc"};
var user = sericeClient.Post(request);
user.PrintDump();
}