| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //
- // 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;
-
- public ServiceSettingsResponseInfo ()
- {
- body = new ServiceSettingsResponseInfoDC ();
- }
-
- public ServiceSettingsResponseInfo (bool control)
- : this ()
- {
- body.ControlMeshShape = control;
- }
-
- public bool ControlMeshShape {
- get { return body.ControlMeshShape; }
- set { body.ControlMeshShape = value; }
- }
-
- [MonoTODO]
- public bool HasBody ()
- {
- throw new NotImplementedException ();
- }
- }
-
- [DataContract]
- internal class ServiceSettingsResponseInfoDC
- {
- bool control_mesh_shape;
- public ServiceSettingsResponseInfoDC ()
- {
- }
-
- [DataMember]
- public bool ControlMeshShape {
- get { return control_mesh_shape; }
- set { control_mesh_shape = value; }
- }
- }
- }
|