| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- //
- // UpdateInfo.cs
- //
- // Author:
- // Marcos Cobena ([email protected])
- //
- // Copyright 2007 Marcos Cobena (http://www.youcannoteatbits.org/)
- //
- using System.Runtime.Serialization;
- namespace System.ServiceModel.PeerResolvers
- {
- [MessageContract (IsWrapped = false)]
- public class UpdateInfo
- {
- [MessageBodyMember (Name = "Update", Namespace = "http://schemas.microsoft.com/net/2006/05/peer")]
- UpdateInfoDC body;
-
- public UpdateInfo ()
- {
- body = new UpdateInfoDC ();
- }
-
- public UpdateInfo (Guid registrationId, Guid client, string meshId, PeerNodeAddress address)
- : this ()
- {
- body.RegistrationId = registrationId;
- body.ClientId = client;
- body.MeshId = meshId;
- body.NodeAddress = address;
- }
-
- public Guid ClientId {
- get { return body.ClientId; }
- }
-
- public string MeshId {
- get { return body.MeshId; }
- }
-
- public PeerNodeAddress NodeAddress {
- get { return body.NodeAddress; }
- }
-
- public Guid RegistrationId {
- get { return body.RegistrationId; }
- }
-
- [MonoTODO]
- public bool HasBody ()
- {
- throw new NotImplementedException ();
- }
- }
-
- [DataContract]
- internal class UpdateInfoDC
- {
- Guid client_id;
- string mesh_id;
- PeerNodeAddress node_address;
- Guid registration_id;
- public UpdateInfoDC ()
- {
- }
-
- [DataMember]
- public Guid ClientId {
- get { return client_id; }
- set { client_id = value; }
- }
-
- [DataMember]
- public string MeshId {
- get { return mesh_id; }
- set { mesh_id = value; }
- }
-
- [DataMember]
- public PeerNodeAddress NodeAddress {
- get { return node_address; }
- set { node_address = value; }
- }
-
- [DataMember]
- public Guid RegistrationId {
- get { return registration_id; }
- set { registration_id = value; }
- }
- }
- }
|