/// <summary> /// Binds to an existing Persona and loads its first class properties. /// Calling this method results in a call to EWS. /// </summary> /// <param name="service">The service to use to bind to the Persona.</param> /// <param name="id">The Id of the Persona to bind to.</param> /// <returns>A Persona instance representing the Persona corresponding to the specified Id.</returns> static new Persona Bind(ExchangeService service, ItemId id) { return(Persona.Bind( service, id, PropertySet.FirstClassProperties)); }