System.Reactive.IronMQ._Update._Update C# (CSharp) Method

_Update() private method

private _Update ( PushType pushtype = PushType.Multicast, int retries = 3, int retriesDelay = 60 ) : System.Collections.Generic
pushtype PushType
retries int
retriesDelay int
return System.Collections.Generic
        internal _Update(PushType pushtype = PushType.Multicast, int retries = 3, int retriesDelay = 60, params string[] subscribers)
            : this()
        {
            this._json = new JsonObject();
            if (retriesDelay != 60) _json.retries_delay = retriesDelay;
            if (retries != 3) _json.retries = retries;
            if (pushtype != PushType.Multicast) _json.push_type = pushtype;
            if (subscribers.Length != 0)
            {
                _json.subscribers = new JsonArray(subscribers.Select(url => (JsonValue)new _Url(url)));
            }
        }