Click here to Skip to main content
15,894,405 members

Comments by ankitsrist (Top 33 by date)

ankitsrist 12-Sep-16 8:21am View    
thanks sunil, by doing slight change in your code my problem got solved
string responseFromServer = reader.ReadToEnd();
JavaScriptSerializer js = new JavaScriptSerializer();
dynamic obj = js.Deserialize
ankitsrist 12-Sep-16 6:08am View    
It is giving my required json output, but what i actually want is to use json field to display in my aspx page accordingly for eg. Conferencelbl.text= "name"(field of returned json), can i do something like that. Thanks
ankitsrist 9-Sep-16 2:14am View    
Here it is karthik
{
"aliases": [
{
"alias": "test",
"conference": "/api/admin/configuration/v1/conference/1/",
"description": "test",
"id": 1
}
],
"allow_guests": true,
"automatic_participants": [],
"call_type": "video",
"description": "",
"force_presenter_into_main": false,
"guest_pin": "",
"guest_view": null,
"host_view": "one_main_seven_pips",
"id": 1,
"ivr_theme": null,
"match_string": null,
"max_callrate_in": null,
"max_callrate_out": null,
"mssip_proxy": null,
"mute_all_guests": false,
"name": "VMR_1",
"participant_limit": null,
"pin": "12345",
"replace_string": "",
"resource_uri": "/api/admin/configuration/v1/conference/1/",
"service_type": "conference",
"sync_tag": "",
"system_location": null,
"tag": ""
}
ankitsrist 9-Sep-16 2:13am View    
Deleted
{"aliases": [{"alias": "test", "conference": "/api/admin/configuration/v1/conference/1/", "description": "test", "id": 1}], "allow_guests": true, "automatic_participants": [], "call_type": "video", "description": "", "force_presenter_into_main": false, "guest_pin": "", "guest_view": null, "host_view": "one_main_seven_pips", "id": 1, "ivr_theme": null, "match_string": null, "max_callrate_in": null, "max_callrate_out": null, "mssip_proxy": null, "mute_all_guests": false, "name": "VMR_1", "participant_limit": null, "pin": "12345", "replace_string": "", "resource_uri": "/api/admin/configuration/v1/conference/1/", "service_type": "conference", "sync_tag": "", "system_location": null, "tag": ""}
ankitsrist 8-Jan-15 6:36am View    
thanks praveen it works :)