Elastacloud.AzureManagement.Fluent.Commands.MobileServices.GetMobileServiceSettingsCommand.ResponseCallback C# (CSharp) Method

ResponseCallback() protected method

populates the JSON string to parse on the return trip
protected ResponseCallback ( System webResponse ) : void
webResponse System
return void
        protected override void ResponseCallback(System.Net.HttpWebResponse webResponse)
        {
            using(var reader = new StreamReader(webResponse.GetResponseStream()))
            {
                JsonResult = reader.ReadToEnd();
            }
            SitAndWait.Set();
        }