Пример #1
0
 internal IQRequest(JId to, string innerElementLocalName, XElement[] content, IQRequestType requestType, Action<IQResponse> responseCallback)
     : base(to, innerElementLocalName, content)
 {
     RequestType = requestType;
     ResponseCallback = responseCallback;
 }
Пример #2
0
 internal IQRequest(string innerElementLocalName, XElement[] content, IQRequestType requestType, Action<IQResponse> responseCallback)
     : this(null, innerElementLocalName, content, requestType, responseCallback)
 {
 }