| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- //
- // ServiceSettingsResponseInfo.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 ServiceSettingsResponseInfo
- {
- [MessageBodyMember (Name = "ServiceSettings", Namespace = "http://schemas.microsoft.com/net/2006/05/peer")]
- ServiceSettingsResponseInfoDC Body {
- get {
- if (body == null)
- body = new ServiceSettingsResponseInfoDC ();
- return body;
- }
- }
- ServiceSettingsResponseInfoDC body;
-
- public ServiceSettingsResponseInfo ()
- {
- }
-
- public ServiceSettingsResponseInfo (bool control)
- {
- Body.ControlMeshShape = control;
- }
-
- public bool ControlMeshShape {
- get { return Body.ControlMeshShape; }
- set { Body.ControlMeshShape = value; }
- }
-
- public bool HasBody ()
- {
- return true; // FIXME: I have no idea when it returns false
- }
- }
-
- [DataContract (Name = "ServiceSettings", Namespace = "http://schemas.microsoft.com/net/2006/05/peer")]
- internal class ServiceSettingsResponseInfoDC
- {
- bool control_mesh_shape;
- public ServiceSettingsResponseInfoDC ()
- {
- }
-
- [DataMember]
- public bool ControlMeshShape {
- get { return control_mesh_shape; }
- set { control_mesh_shape = value; }
- }
- }
- }
|