-
- static void Main(string[] args)
- {
- Console.WriteLine("Starting C# Kaltura API Client Library");
- int code = 0;
- uniqueTag = Guid.NewGuid().ToString().Replace("-", "").Substring(0, 20);
- try
- {
- if(args.Length > 0 && args[0].Equals("--with-threads"))
- {
- SampleThreadedChunkUpload();
- }
- }
- catch (KalturaAPIException e0)
- {
- Console.WriteLine("failed chunk upload: " + e0.Message);
- }
-
- try
- {
- ResponseProfileExample();