EventData.set_Parameters versus EventData.SetParameters

Options
escjosh
edited February 2012 in Photon Server
public Dictionary<byte, object> Parameters { get; set; }
public void SetParameters( Dictionary<byte, object> parameters );
Is there a difference between "eventData.Parameters = x" and "eventData.SetParameters(x)"?

Comments

  • BenStahl
    Options
    There is no difference. The SetParameters method also sets the Parameters property to the value of x.