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 = "AuthenticateMeRequest", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] public class AuthenticateMe : ConnectedRequest { [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 0)] public AuthenticationData ConsumerAuthenticationData; public AuthenticateMe() { } public AuthenticateMe(AuthenticationData ConsumerAuthenticationData) { this.ConsumerAuthenticationData = ConsumerAuthenticationData; } }