using System; using System.CodeDom.Compiler; using System.ComponentModel; using System.Diagnostics; using System.ServiceModel; using System.Xml.Serialization; namespace ArchestrAServices.ASBContract; [DebuggerStepThrough] [GeneratedCode("System.ServiceModel", "4.0.0.0")] [EditorBrowsable(EditorBrowsableState.Advanced)] [MessageContract(WrapperName = "RenewResponse", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] public class RenewResponse : ConnectedResponse { [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 0)] public Guid NewConnectionId; [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 1)] [XmlElement(DataType = "duration")] public string NewConnectionLifetime; [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 2)] public PublicKey NewServicePublicKey; [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 3)] public AuthenticationData NewServiceAuthenticationData; public RenewResponse() { } public RenewResponse(Guid NewConnectionId, string NewConnectionLifetime, PublicKey NewServicePublicKey, AuthenticationData NewServiceAuthenticationData) { this.NewConnectionId = NewConnectionId; this.NewConnectionLifetime = NewConnectionLifetime; this.NewServicePublicKey = NewServicePublicKey; this.NewServiceAuthenticationData = NewServiceAuthenticationData; } }