# Sandbox.Internal.TypeLibrary.GetPropertyDescriptions

```csharp
PropertyDescription[] GetPropertyDescriptions(object obj, bool onlyOwn = False)
```

Get a list of properties on the target object. To do this we'll just call GetDescription( obj.GetType() ) and return .Properties.
Will return an empty array if we can't access these properties.

### Parameters

- `obj` (`object`)
- `onlyOwn` (`bool`), default `False`

### Returns

`PropertyDescription[]`

Declared in [Sandbox.Internal.TypeLibrary](/api/Sandbox.Internal.TypeLibrary).
Assembly: `Sandbox.Reflection`.
