Example #1
0
 /// <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())
 {
 }
Example #2
0
 /// <summary>
 /// Requests an object's properties.
 /// </summary>
 /// <param name="objectPath"></param>
 public void RequestObjectProperties(ObjectPath objectPath, ObjectRecievedHandler handler)
 {
     RequestObjectProperties(objectPath.ToString(), handler);
 }