本文整理汇总了C#中Response.CreateXml方法的典型用法代码示例。如果您正苦于以下问题:C# Response.CreateXml方法的具体用法?C# Response.CreateXml怎么用?C# Response.CreateXml使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Response
的用法示例。
在下文中一共展示了Response.CreateXml方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Can_I_Generate_GetSpeech
public void Can_I_Generate_GetSpeech()
{
var response = new Response();
response.GetSpeech(GetSpeech.Create("http://www.grammar-url.com", "http://www.action-url.com"));
Assert.True(IsValidInboundXML(response.CreateXml()));
}
示例2: Can_I_Generate_Sms
public void Can_I_Generate_Sms()
{
var response = new Response();
response.Sms("Hello from inbound :)", PhoneNumberToDial, PhoneNumberToDial);
Assert.True(IsValidInboundXML(response.CreateXml()));
}
示例3: Can_I_Generate_Sms_With_Attributes
public void Can_I_Generate_Sms_With_Attributes()
{
var response = new Response();
response.Sms("Hello from inbound :)", PhoneNumberToDial, PhoneNumberToDial, null, HttpMethod.POST, null);
Assert.True(IsValidInboundXML(response.CreateXml()));
}
示例4: Can_I_Generate_Say
public void Can_I_Generate_Say()
{
var response = new Response();
response.Say("Hello from InboundXML!");
Assert.True(IsValidInboundXML(response.CreateXml()));
}
示例5: Can_I_Generate_Dial_With_Number
public void Can_I_Generate_Dial_With_Number()
{
var response = new Response();
response.Dial(Dial.Create(PhoneNumberToDial).Number("123", "456", null, HttpMethod.POST));
Assert.True(IsValidInboundXML(response.CreateXml()));
}
示例6: Can_I_Generate_Gather
public void Can_I_Generate_Gather()
{
var response = new Response();
response.Gather(Gather.Create("http://www.action-url.com"));
Assert.True(IsValidInboundXML(response.CreateXml()));
}
示例7: Can_I_Generate_Say_With_Attributes
public void Can_I_Generate_Say_With_Attributes()
{
var response = new Response();
response.Say("Hello from women voice", Voice.man, 10);
Assert.True(IsValidInboundXML(response.CreateXml()));
}
示例8: Can_I_Generate_Dial_With_Sip_With_Attributes
public void Can_I_Generate_Dial_With_Sip_With_Attributes()
{
var response = new Response();
response.Dial(Dial.Create(PhoneNumberToDial).Sip("sip-address", "123", null, HttpMethod.GET));
Assert.True(IsValidInboundXML(response.CreateXml()));
}
示例9: Can_I_Generate_Reject
public void Can_I_Generate_Reject()
{
var response = new Response();
response.Reject();
Assert.True(IsValidInboundXML(response.CreateXml()));
}
示例10: Can_I_Generate_Reject_With_Attributes
public void Can_I_Generate_Reject_With_Attributes()
{
var response = new Response();
response.Reject(RejectReason.busy);
Assert.True(IsValidInboundXML(response.CreateXml()));
}
示例11: Can_I_Generate_Redirect_With_Attributes
public void Can_I_Generate_Redirect_With_Attributes()
{
var response = new Response();
response.Redirect("http://www.redirect-url.com", HttpMethod.POST);
Assert.True(IsValidInboundXML(response.CreateXml()));
}
示例12: Can_I_Generate_Conference_With_Dial
public void Can_I_Generate_Conference_With_Dial()
{
var response = new Response();
response.Dial(Dial.Create(PhoneNumberToDial).Conference("conference"));
Assert.True(IsValidInboundXML(response.CreateXml()));
}
示例13: Can_I_Generate_Multiple_Say
public void Can_I_Generate_Multiple_Say()
{
var response = new Response();
response.Say("Hello").Say("From").Say("Inbound XML", null, 10);
Assert.True(IsValidInboundXML(response.CreateXml()));
}
示例14: Can_I_Generate_Hangup_With_Attributes
public void Can_I_Generate_Hangup_With_Attributes()
{
var response = new Response();
response.Hangup(10);
Assert.True(IsValidInboundXML(response.CreateXml()));
}
示例15: Can_I_Generate_Gather_With_Say
public void Can_I_Generate_Gather_With_Say()
{
var response = new Response();
response.Gather(Gather.Create("http://www.action-url.com").Say("Hello", Voice.man, null));
Assert.True(IsValidInboundXML(response.CreateXml()));
}