WriteAllProperties() public method

Writes all public and private declared instance properties of the object in alphabetical order using reflection
public WriteAllProperties ( object ob ) : void
ob object
return void
Exemplo n.º 1
0
 public virtual void Write(NetBuffer om)
 {
     om.Position = 0;
     om.Write(Id);
     om.WriteAllProperties(this);
 }