using System.CodeDom.Compiler; using System.ComponentModel; using System.Diagnostics; using System.ServiceModel; using ArchestrAServices.ASBIDataContract; namespace ArchestrAServices.ASBContract; [DebuggerStepThrough] [GeneratedCode("System.ServiceModel", "4.0.0.0")] [EditorBrowsable(EditorBrowsableState.Advanced)] [MessageContract(WrapperName = "GetSubscriptionStateResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] public class GetSubscriptionStateResponse : ConnectedResponse { [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] private Variant State; public ArchestrAServices.ASBIDataContract.Variant StateProperty { get { return new ArchestrAServices.ASBIDataContract.Variant { Type = State.Type, Length = State.Length, Payload = State.Payload }; } set { State.Type = value.Type; State.Length = value.Length; State.Payload = value.Payload; } } public GetSubscriptionStateResponse() { } public GetSubscriptionStateResponse(ArchestrAServices.ASBIDataContract.Variant State) { this.State.Type = State.Type; this.State.Length = State.Length; this.State.Payload = State.Payload; } }