Пример #1
0
        public AuthenticationXmlType GetXmlType()
        {
            AuthenticationXmlType retValue = new AuthenticationXmlType();
            retValue.UserName = this.UserName;
            retValue.Password = this.Password;

            return retValue;
        }
Пример #2
0
 public Authentication(AuthenticationXmlType xmlType)
 {
     this.UserName = xmlType.UserName;
     this.Password = xmlType.Password;
 }