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 = "ConnectResponse", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] public class ConnectResponse : ConnectedResponse { [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 0)] public PublicKey ServicePublicKey; [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 1)] public AuthenticationData ServiceAuthenticationData; [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 2)] [XmlElement(DataType = "duration")] public string ConnectionLifetime; public ConnectResponse() { } public ConnectResponse(PublicKey ServicePublicKey, AuthenticationData ServiceAuthenticationData, string ConnectionLifetime) { this.ServicePublicKey = ServicePublicKey; this.ServiceAuthenticationData = ServiceAuthenticationData; this.ConnectionLifetime = ConnectionLifetime; } }