AudioQueue.GetProperty Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetProperty(AudioQueueProperty, Int32) |
Low-level API to fetch AudioQueue properties. |
GetProperty(AudioQueueProperty, Int32, IntPtr) |
Low-level API to fetch AudioQueue properties. |
GetProperty<T>(AudioQueueProperty) |
Low-level API to fetch AudioQueue properties. |
GetProperty(AudioQueueProperty, Int32)
Low-level API to fetch AudioQueue properties.
public IntPtr GetProperty (AudioToolbox.AudioQueueProperty property, out int size);
member this.GetProperty : AudioToolbox.AudioQueueProperty * -> nativeint
Parameters
- property
- AudioQueueProperty
Property ID to retrieve.
- size
- Int32
Expected size of the property.
Returns
nativeint
Remarks
MonoTouch provides a high-level interface to the AudioQueue properties. This API is here in case a new property is added and you have not updated your code to the latest version of MonoTouch.
Applies to
GetProperty(AudioQueueProperty, Int32, IntPtr)
Low-level API to fetch AudioQueue properties.
public bool GetProperty (AudioToolbox.AudioQueueProperty property, ref int dataSize, IntPtr outdata);
member this.GetProperty : AudioToolbox.AudioQueueProperty * * nativeint -> bool
Parameters
- property
- AudioQueueProperty
Property ID to retrieve.
- dataSize
- Int32
Expected size of the property.
- outdata
-
IntPtr
nativeint
Pointers to the data.
Returns
Remarks
MonoTouch provides a high-level interface to the AudioQueue properties. This API is here in case a new property is added and you have not updated your code to the latest version of MonoTouch.
Applies to
GetProperty<T>(AudioQueueProperty)
Low-level API to fetch AudioQueue properties.
public T GetProperty<T> (AudioToolbox.AudioQueueProperty property) where T : struct;
member this.GetProperty : AudioToolbox.AudioQueueProperty -> 'T (requires 'T : struct)
Type Parameters
- T
Parameters
- property
- AudioQueueProperty
Property ID to retrieve.
Returns
Remarks
This version returns the value of the property based on the provided generic type.
MonoTouch provides a high-level interface to the AudioQueue properties. This API is here in case a new property is added and you have not updated your code to the latest version of MonoTouch.