示例#1
0
 public IQ(IQType type, String from, String to)
     : base(_NAME)
 {
     SetAttribute("id", GetNextId());
     Type = (GetIqType(type));
     From = from;
     To   = to;
 }
示例#2
0
 public IQ(IQType type, String from, String to)
     : base(_NAME)
 {
     SetAttribute("id", GetNextId());
     Type = (GetIqType(type));
     From = from;
     To = to;
 }
示例#3
0
 public AvatarIq(IQType type) : this()
 {
     this.Type = type;
 }
示例#4
0
 public StorageIq(IQType type, Jid to) : this(type)
 {
     this.To = to;
 }
示例#5
0
 public AgentsIq(IQType type, Jid to, Jid from) : this(type, to)
 {
     this.From = from;
 }
示例#6
0
 public AgentsIq(IQType type) : this()
 {
     this.Type = type;
 }
示例#7
0
 public TimeIq(IQType type) : this()
 {
     this.Type = type;
 }
示例#8
0
 public PrivacyIq(IQType type, Jid to)
     : this(type)
 {
     this.To = to;
 }
示例#9
0
 public IQ(IQType type)
     : base(_NAME)
 {
     SetAttribute("id", GetNextId());
     Type = (GetIqType(type));
 }
示例#10
0
 public OwnerIq(IQType type) : this()
 {
     this.Type = type;
 }
示例#11
0
 public BrowseIq(IQType type, Jid to, Jid from) : this(type, to)
 {
     this.From = from;
 }
示例#12
0
 public IQ(IQType type)
     : base(null, Element.ElementType.IQ, (Element.ElementSubType) type)
 {
 }
示例#13
0
 public IQ(string to, IQType type)
     : base(to, Element.ElementType.IQ, (Element.ElementSubType) type)
 {
 }
示例#14
0
 public IQ(IQType type, string xmlns)
     : base(_NAME, xmlns)
 {
     SetAttribute("id", GetNextId());
     Type = (GetIqType(type));
 }
示例#15
0
 public AvatarIq(IQType type, Jid to, Jid from) : this(type, to)
 {
     this.From = from;
 }
示例#16
0
 public OwnerIq(IQType type, Jid to) : this(type)
 {
     this.To = to;
 }
示例#17
0
 public LastIq(IQType type, Jid to) : this(type)
 {
     this.To = to;
 }
示例#18
0
 public OwnerIq(IQType type, Jid to, Jid from) : this(type, to)
 {
     this.From = from;
 }
示例#19
0
 public PrivacyIq(IQType type)
     : this()
 {
     this.Type = type;
 }
示例#20
0
文件: RpcIq.cs 项目: Toyz/agsXMPP
 public RpcIq(IQType type) : this()
 {
     this.Type = type;
 }
示例#21
0
 public PrivacyIq(IQType type, Jid to, Jid from)
     : this(type, to)
 {
     this.From = from;
 }
示例#22
0
文件: RpcIq.cs 项目: Toyz/agsXMPP
 public RpcIq(IQType type, Jid to) : this(type)
 {
     this.To = to;
 }
示例#23
0
 public TimeIq(IQType type, Jid to) : this(type)
 {
     this.To = to;
 }
示例#24
0
 public VersionIq(IQType type) : this()
 {
     this.Type = type;
 }
示例#25
0
 public AgentsIq(IQType type, Jid to) : this(type)
 {
     this.To = to;
 }
示例#26
0
 public VersionIq(IQType type, Jid to) : this(type)
 {
     this.To = to;
 }
示例#27
0
 public StorageIq(IQType type) : this()
 {
     this.Type = type;
 }
示例#28
0
 public VersionIq(IQType type, Jid to, Jid from) : this(type, to)
 {
     this.From = from;
 }
示例#29
0
 public StorageIq(IQType type, Jid to, Jid from) : this(type, to)
 {
     this.From = from;
 }
示例#30
0
 public PubSubIq(IQType type) : this()
 {
     this.Type = type;
 }
示例#31
0
 public AvatarIq(IQType type, Jid to) : this(type)
 {
     this.To = to;
 }
示例#32
0
 public PubSubIq(IQType type, Jid to) : this(type)
 {
     this.To = to;
 }
示例#33
0
 public LastIq(IQType type) : this()
 {
     this.Type = type;
 }
示例#34
0
 public PubSubIq(IQType type, Jid to, Jid from) : this(type, to)
 {
     this.From = from;
 }
示例#35
0
 public LastIq(IQType type, Jid to, Jid from) : this(type, to)
 {
     this.From = from;
 }
示例#36
0
 private static string GetIqType(IQType type)
 {
     return GetDescriptionMap()[type];
 }