2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.ServiceModel / System.ServiceModel.PeerResolvers / RegisterInfo.cs
blob000b66353ba9ee0c40e8f0b727cc09e5f16c2b89
1 //
2 // RegisterInfo.cs
3 //
4 // Author:
5 // Marcos Cobena (marcoscobena@gmail.com)
6 // Atsushi Enomoto <atsushi@ximian.com>
7 //
8 // Copyright 2007 Marcos Cobena (http://www.youcannoteatbits.org/)
9 // Copyright (C) 2007 Novell, Inc. http://novell.com
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 using System.Runtime.Serialization;
33 namespace System.ServiceModel.PeerResolvers
35 [MessageContract (IsWrapped = false)]
36 public class RegisterInfo
38 [MessageBodyMember (Name = "Register", Namespace = "http://schemas.microsoft.com/net/2006/05/peer")]
39 RegisterInfoDC Body {
40 get {
41 if (body == null)
42 body = new RegisterInfoDC ();
43 return body;
46 RegisterInfoDC body;
48 public RegisterInfo ()
52 public RegisterInfo (Guid client, string meshId, PeerNodeAddress address)
53 : this ()
55 Body.ClientId = client;
56 Body.MeshId = meshId;
57 Body.NodeAddress = address;
60 public Guid ClientId {
61 get { return Body.ClientId; }
64 public string MeshId {
65 get { return Body.MeshId; }
68 public PeerNodeAddress NodeAddress {
69 get { return Body.NodeAddress; }
72 public bool HasBody ()
74 return true; // FIXME: I have no idea when it returns false
78 [DataContract (Namespace = "http://schemas.microsoft.com/net/2006/05/peer")]
79 internal class RegisterInfoDC
81 Guid client_id;
82 string mesh_id;
83 PeerNodeAddress node_address;
85 public RegisterInfoDC ()
89 [DataMember]
90 public Guid ClientId {
91 get { return client_id; }
92 set { client_id = value; }
95 [DataMember]
96 public string MeshId {
97 get { return mesh_id; }
98 set { mesh_id = value; }
101 [DataMember]
102 public PeerNodeAddress NodeAddress {
103 get { return node_address; }
104 set { node_address = value; }