internal IQRequest(JId to, string innerElementLocalName, XElement[] content, IQRequestType requestType, Action<IQResponse> responseCallback) : base(to, innerElementLocalName, content) { RequestType = requestType; ResponseCallback = responseCallback; }
internal IQRequest(string innerElementLocalName, XElement[] content, IQRequestType requestType, Action<IQResponse> responseCallback) : this(null, innerElementLocalName, content, requestType, responseCallback) { }