Bloom.ToPalaso.MessageLabelProgress.UpdateText C# (CSharp) Method

UpdateText() private method

private UpdateText ( object state ) : void
state object
return void
        private void UpdateText(object state)
        {
            try
            {
                Debug.WriteLine("updatetext: "+state as string);
                Text = state as string;
            }
            catch (Exception error)
            {
            #if DEBUG
                Debug.Fail(error.Message);
            #endif
            }
        }