/// <summary> /// Creates a new instance of ObjectPropertyRequest for the /// object at the specified path. /// </summary> /// <param name="path">The ObjectPath of the object.</param> public ObjectPropertyRequest(ObjectPath path) : this(path.ToString()) { }
/// <summary> /// Requests an object's properties. /// </summary> /// <param name="objectPath"></param> public void RequestObjectProperties(ObjectPath objectPath, ObjectRecievedHandler handler) { RequestObjectProperties(objectPath.ToString(), handler); }