Exemplo n.º 1
0
      internal override void ParseBytes(byte[] objectData)
      {
         int index = 0;
         string username = DataUtils.ReadEncodedString(objectData, ref index, objectData.Length);

         Value = new EncodedString(username);
         this.ObjectDataList.Add(Value);
      }
Exemplo n.º 2
0
 public UserName(string username)
 {
    Value = new EncodedString(username);
    this.ObjectDataList.Add(Value);
 }
Exemplo n.º 3
0
 public Password(string password)
 {
    Value = new EncodedString(password);
    this.ObjectDataList.Add(Value);
 }