Elastacloud.AzureManagement.Fluent.Commands.MobileServices.GetMobileServiceSettingsCommand.ResponseCallback C# (CSharp) Méthode

ResponseCallback() protected méthode

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