Skip to content

Commit 533e22d

Browse files
authored
Update README.md
1 parent 96c100d commit 533e22d

File tree

1 file changed

+35
-3
lines changed

1 file changed

+35
-3
lines changed

README.md

Lines changed: 35 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
1-
# twilio-thinQLCR-dotnet, Twilio Wrapper DotNet Library For thinQ LCR integration
1+
# Twilio Wrapper .NET Library For thinQ LCR integration
22

3-
##**Note that you will need a valid LCR Account with thinQ before using the libraries. For more information please contact your thinQ Sales representative at [http://www.thinq.com/library/](http://www.thinq.com/library/)**
3+
#### Note that you will need a valid LCR Account with thinQ before using the libraries. For more information please contact your thinQ Sales representative at [http://www.thinq.com](http://www.thinq.com)
44

5-
#### *Copyright (c) 2016 thinQ*
5+
Example usage:
6+
7+
```C#
8+
using System;
9+
using System.Collections.Generic;
10+
using System.Linq;
11+
using System.Text;
12+
using System.Threading.Tasks;
13+
using TwilioWithThinQLCR;
14+
using Twilio;
15+
16+
namespace Demo
17+
{
18+
class Program
19+
{
20+
static void Main(string[] args)
21+
{
22+
TwilioWrapper wrapper = new TwilioWrapper("twilio-sid", "twilio-token", "thinq-account-id", "thinq-token");
23+
CallOptions callOptions = new CallOptions();
24+
callOptions.To = "19195551234";
25+
callOptions.From = "19198900000";
26+
callOptions.Url = "http://twilio.example.com/twilio.xml";
27+
28+
Call call = wrapper.call(callOptions);
29+
Console.WriteLine("Call sid: " + call.Sid);
30+
Console.ReadLine();
31+
}
32+
}
33+
}
34+
```
35+
---
36+
37+
###### *Copyright (c) 2017 thinQ*

0 commit comments

Comments
 (0)