mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-12-05 05:07:47 +00:00
52 lines
1.3 KiB
PowerShell
52 lines
1.3 KiB
PowerShell
class Device : IRemote {
|
|
Device ([int]$index, [Object]$remote) : base ($index, $remote) {
|
|
}
|
|
|
|
hidden $_name = $($this | Add-Member ScriptProperty 'name' `
|
|
{
|
|
$this.Getter_String('name')
|
|
} `
|
|
{
|
|
return Write-Warning ("ERROR: $($this.identifier()).name is read only")
|
|
}
|
|
)
|
|
|
|
hidden $_sr = $($this | Add-Member ScriptProperty 'sr' `
|
|
{
|
|
[int]$this.Getter('sr')
|
|
} `
|
|
{
|
|
return Write-Warning ("ERROR: $($this.identifier()).sr is read only")
|
|
}
|
|
)
|
|
|
|
hidden $_wdm = $($this | Add-Member ScriptProperty 'wdm' `
|
|
{
|
|
return Write-Warning ("ERROR: $($this.identifier()).wdm is write only")
|
|
} `
|
|
{
|
|
param($arg)
|
|
return $this.Setter('wdm', $arg)
|
|
}
|
|
)
|
|
|
|
hidden $_ks = $($this | Add-Member ScriptProperty 'ks' `
|
|
{
|
|
return Write-Warning ("ERROR: $($this.identifier()).ks is write only")
|
|
} `
|
|
{
|
|
param($arg)
|
|
return $this.Setter('ks', $arg)
|
|
}
|
|
)
|
|
|
|
hidden $_mme = $($this | Add-Member ScriptProperty 'mme' `
|
|
{
|
|
return Write-Warning ("ERROR: $($this.identifier()).mme is write only")
|
|
} `
|
|
{
|
|
param($arg)
|
|
return $this.Setter('mme', $arg)
|
|
}
|
|
)
|
|
} |