コード例 #1
0
ファイル: StanzaHandlerBase.cs プロジェクト: Andrea/nxmpp
 internal IQRequest(JId to, string innerElementLocalName, XElement[] content, IQRequestType requestType, Action<IQResponse> responseCallback)
     : base(to, innerElementLocalName, content)
 {
     RequestType = requestType;
     ResponseCallback = responseCallback;
 }
コード例 #2
0
ファイル: StanzaHandlerBase.cs プロジェクト: Andrea/nxmpp
 internal IQRequest(string innerElementLocalName, XElement[] content, IQRequestType requestType, Action<IQResponse> responseCallback)
     : this(null, innerElementLocalName, content, requestType, responseCallback)
 {
 }