#Get-SPOProperty Will populate properties of an object and optionally, if needed, load the value from the server. If one property is specified its value will be returned to the output. ##Syntax
Get-SPOProperty -ClientObject <ClientObject> -Property <String[]>##Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ClientObject | ClientObject | True | |
| Property | String[] | True | The properties to load. If one property is specified its value will be returned to the output. |
| ##Examples |
###Example 1
PS:> $web = Get-SPOWeb
PS:> Get-SPOProperty -ClientObject $web -Property Id, Lists
PS:> $web.ListsWill load both the Id and Lists properties of the specified Web object.
###Example 2
PS:> $list = Get-SPOList -Identity 'Site Assets'
PS:> Get-SPOProperty -ClientObject $list -Property ViewsWill load the views object of the specified list object and return its value to the output.