BigTed.ProgressHUD.Show C# (CSharp) Method

Show() public method

public Show ( string cancelCaption, Action cancelCallback, string status = null, float progress = -1, MaskType maskType = MaskType.None, double timeoutMs = 1000 ) : void
cancelCaption string
cancelCallback Action
status string
progress float
maskType MaskType
timeoutMs double
return void
        public void Show(string cancelCaption, Action cancelCallback, string status = null, 
		                  float progress = -1, MaskType maskType = MaskType.None, double timeoutMs = 1000)
        {
            // Making cancelCaption optional hides the method via the overload
            if (string.IsNullOrEmpty (cancelCaption)) {
                cancelCaption = "Cancel";
            }
            obj.InvokeOnMainThread (() => ShowProgressWorker (progress, status, maskType,
                cancelCaption: cancelCaption, cancelCallback: cancelCallback, timeoutMs: timeoutMs));
        }

Same methods

ProgressHUD::Show ( string status = null, float progress = -1, MaskType maskType = MaskType.None, double timeoutMs = 1000 ) : void