Exemple #1
0
 //Deserialization constructor
 public User(SerializationInfo info, StreamingContext ctxt)
 {
     Name = (String)info.GetValue("Name", typeof(String));
     Location = (ExtraMegaBlob.References.Vector3)info.GetValue("Location", typeof(ExtraMegaBlob.References.Vector3));
     Endpoint = (String)info.GetValue("Endpoint", typeof(String));
 }
Exemple #2
0
 //Deserialization constructor
 public User(SerializationInfo info, StreamingContext ctxt)
 {
     Name     = (String)info.GetValue("Name", typeof(String));
     Location = (ExtraMegaBlob.References.Vector3)info.GetValue("Location", typeof(ExtraMegaBlob.References.Vector3));
     Endpoint = (String)info.GetValue("Endpoint", typeof(String));
 }
Exemple #3
0
 public User(String Name, ExtraMegaBlob.References.Vector3 Location, String Endpoint)
 {
     this.Name = Name;
     this.Location = Location;
     this.Endpoint = Endpoint;
 }
Exemple #4
0
 public User(String Name, ExtraMegaBlob.References.Vector3 Location, String Endpoint)
 {
     this.Name     = Name;
     this.Location = Location;
     this.Endpoint = Endpoint;
 }