Get Kaltura Source using C# Asp.Net

I want to upload video using c# Asp.net and Get the video url and other details from Kaltura after upload. I am able to upload video but not able to get video details. Please help me to fix this.

For C#, you probably want something like:

using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace Kaltura{
class CodeExample{
static void Main(string[] args){
KalturaConfiguration config = new KalturaConfiguration(partnerId);
config.ServiceUrl = "https://www.kaltura.com/";
KalturaClient client = new KalturaClient(config);
String entryId = your_entry_id;
int version = null;
Object result = client.BaseEntryService.Get(entryId, version);
}
}
}