| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- //
- // RefreshResponseInfo.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 RefreshResponseInfo
- {
- [MessageBodyMember (Name = "RefreshResponse", Namespace = "http://schemas.microsoft.com/net/2006/05/peer")]
- RefreshResponseInfoDC Body {
- get {
- if (body == null)
- body = new RefreshResponseInfoDC ();
- return body;
- }
- }
- RefreshResponseInfoDC body;
-
- public RefreshResponseInfo ()
- {
- }
-
- public RefreshResponseInfo (TimeSpan registrationLifetime, RefreshResult result)
- {
- Body.RegistrationLifetime = registrationLifetime;
- Body.Result = result;
- }
-
- public TimeSpan RegistrationLifetime {
- get { return Body.RegistrationLifetime; }
- set { Body.RegistrationLifetime = value; }
- }
-
- public RefreshResult Result {
- get { return Body.Result; }
- set { Body.Result = value; }
- }
-
- public bool HasBody ()
- {
- return true; // FIXME: I have no idea when it returns false
- }
- }
-
- [DataContract (Name = "RefreshResponse", Namespace = "http://schemas.microsoft.com/net/2006/05/peer")]
- internal class RefreshResponseInfoDC
- {
- TimeSpan registration_lifetime;
- RefreshResult result;
- public RefreshResponseInfoDC ()
- {
- }
-
- [DataMember]
- public TimeSpan RegistrationLifetime {
- get { return registration_lifetime; }
- set { registration_lifetime = value; }
- }
-
- [DataMember]
- public RefreshResult Result {
- get { return result; }
- set { result = value; }
- }
- }
- }
|