using System; using System.CodeDom.Compiler; using System.ComponentModel; using System.Diagnostics; using System.ServiceModel; namespace ArchestrAServices.ASBContract; [DebuggerStepThrough] [GeneratedCode("System.ServiceModel", "4.0.0.0")] [EditorBrowsable(EditorBrowsableState.Advanced)] [MessageContract(WrapperName = "RenewRequest", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] public class RenewRequest : ConnectedRequest { [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 0)] public AuthenticationData ConsumerAuthenticationData; [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 1)] public Guid NewConnectionId; [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 2)] public PublicKey NewConsumerPublicKey; public RenewRequest() { } public RenewRequest(AuthenticationData ConsumerAuthenticationData, Guid NewConnectionId, PublicKey NewConsumerPublicKey) { this.ConsumerAuthenticationData = ConsumerAuthenticationData; this.NewConnectionId = NewConnectionId; this.NewConsumerPublicKey = NewConsumerPublicKey; } }