AVAudioFormat コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
AVAudioFormat()
既定のコンストラクターは、このクラスの新しいインスタンスを初期化します。
[Foundation.Export("init")]
public AVAudioFormat ();
- 属性
適用対象
AVAudioFormat(AudioStreamBasicDescription)
指定した description
の新しい AVAudioFormat を作成します。
[Foundation.Export("initWithStreamDescription:")]
public AVAudioFormat (ref AudioToolbox.AudioStreamBasicDescription description);
new AVFoundation.AVAudioFormat : -> AVFoundation.AVAudioFormat
パラメーター
- description
- AudioStreamBasicDescription
- 属性
適用対象
AVAudioFormat(AudioSettings)
指定した settings
の新しい AVAudioFormat を作成します。
public AVAudioFormat (AVFoundation.AudioSettings settings);
new AVFoundation.AVAudioFormat : AVFoundation.AudioSettings -> AVFoundation.AVAudioFormat
パラメーター
- settings
- AudioSettings
適用対象
AVAudioFormat(CMAudioFormatDescription)
指定した formatDescription
の新しい AVAudioFormat を作成します。
[Foundation.Export("initWithCMAudioFormatDescription:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 11, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
public AVAudioFormat (CoreMedia.CMAudioFormatDescription formatDescription);
new AVFoundation.AVAudioFormat : CoreMedia.CMAudioFormatDescription -> AVFoundation.AVAudioFormat
パラメーター
- formatDescription
- CMAudioFormatDescription
- 属性
適用対象
AVAudioFormat(NSCoder)
unarchiver オブジェクトに格納されているデータから オブジェクトを初期化するコンストラクター。
[Foundation.Export("initWithCoder:")]
[ObjCRuntime.DesignatedInitializer]
public AVAudioFormat (Foundation.NSCoder coder);
new AVFoundation.AVAudioFormat : Foundation.NSCoder -> AVFoundation.AVAudioFormat
パラメーター
- coder
- NSCoder
unarchiver オブジェクト。
- 属性
注釈
このコンストラクターは、(たとえば、NIB の逆シリアル化中に) 非アーキテクチャからクラスを初期化できるようにするために提供されます。 これはプロトコルの NSCoding 一部です。
開発者がこのオブジェクトのサブクラスを作成し、アーカイブからの逆シリアル化を引き続きサポートする場合は、同じシグネチャを持つコンストラクターを実装する必要があります。型 NSCoder のパラメーターを 1 つ取得し、[Export("initWithCoder:"] 属性宣言で修飾します。
このオブジェクトの状態は、コンパニオン メソッド EncodeTo を使用してシリアル化することもできます。
適用対象
AVAudioFormat(NSDictionary)
指定したsettings
ディクショナリから新しい AVAudioFormat を作成します。
[Foundation.Export("initWithSettings:")]
public AVAudioFormat (Foundation.NSDictionary settings);
new AVFoundation.AVAudioFormat : Foundation.NSDictionary -> AVFoundation.AVAudioFormat
パラメーター
- settings
- NSDictionary
- 属性
適用対象
AVAudioFormat(NSObjectFlag)
初期化をスキップし、単に オブジェクトを割り当てるために、派生クラスで を呼び出すコンストラクター。
protected AVAudioFormat (Foundation.NSObjectFlag t);
new AVFoundation.AVAudioFormat : Foundation.NSObjectFlag -> AVFoundation.AVAudioFormat
パラメーター
未使用の Sentinel 値を渡し、NSObjectFlag.Empty を渡します。
注釈
このコンストラクターは、マネージド コードでオブジェクトを完全に構築し、ランタイムが NSObject を割り当てて初期化するだけで済む場合に、派生クラスによって呼び出される必要があります。 これは Objective-C が使用する 2 段階の初期化プロセスを実装するために必要です。最初の手順はオブジェクトの割り当てを実行し、2 番目の手順は オブジェクトを初期化することです。 開発者は、NSObjectFlag.Empty を受け取るコンストラクターを呼び出すときに、NSObject までの直接パスを利用して、単にオブジェクトのメモリを割り当てて Objective-C と C# オブジェクトをバインドするだけです。 オブジェクトの実際の初期化は開発者が行います。
このコンストラクターは通常、バインディング ジェネレーターによってオブジェクトを割り当てるために使用されますが、実際の初期化が行われるのを防ぎます。 割り当てが行われたら、コンストラクターは オブジェクトを初期化する必要があります。 バインディング ジェネレーターによって生成されたコンストラクターでは、オブジェクトを初期化するために "init" メソッドのいずれかを手動で呼び出します。
NSObjectFlag.Empty パスを使用してチェーンアップする場合、オブジェクトを完全に初期化するのは開発者の責任です。
一般に、開発者のコンストラクターが NSObjectFlag.Empty 基本実装を呼び出す場合は、Objective-C init メソッドを呼び出す必要があります。 そうでない場合、開発者は代わりにクラス内の適切なコンストラクターにチェーンする必要があります。
引数の値は無視され、実行される唯一のコードは、構築フェーズが基本的な NSObject 割り当てとランタイム型の登録であることを保証するだけです。 通常、チェーンは次のようになります。
//
// The NSObjectFlag merely allocates the object and registers the
// C# class with the Objective-C runtime if necessary, but no actual
// initXxx method is invoked, that is done later in the constructor
//
// This is taken from Xamarin.iOS's source code:
//
[Export ("initWithFrame:")]
public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
{
// Invoke the init method now.
var initWithFrame = new Selector ("initWithFrame:").Handle;
if (IsDirectBinding)
Handle = ObjCRuntime.Messaging.IntPtr_objc_msgSend_CGRect (this.Handle, initWithFrame, frame);
else
Handle = ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_CGRect (this.SuperHandle, initWithFrame, frame);
}
適用対象
AVAudioFormat(IntPtr)
アンマネージド オブジェクトのマネージド表現を作成するときに使用されるコンストラクター。ランタイムによって呼び出されます。
protected internal AVAudioFormat (IntPtr handle);
new AVFoundation.AVAudioFormat : nativeint -> AVFoundation.AVAudioFormat
パラメーター
- handle
-
IntPtr
nativeint
アンマネージ オブジェクトへのポインター (ハンドル)。
注釈
このコンストラクターは、ランタイム インフラストラクチャ (GetNSObject(IntPtr)) によって呼び出され、アンマネージ Objective-C オブジェクトへのポインターの新しいマネージド表現を作成します。 開発者は、このメソッドを直接呼び出さないでください。代わりに GetNSObject メソッドを呼び出す必要があります。これにより、マネージド オブジェクトの 2 つのインスタンスが同じネイティブ オブジェクトを指すのを防ぐことができます。
適用対象
AVAudioFormat(AudioStreamBasicDescription, AVAudioChannelLayout)
指定した description
チャネルと チャネル から新しい AVAudioFormat を作成しますlayout
。
[Foundation.Export("initWithStreamDescription:channelLayout:")]
public AVAudioFormat (ref AudioToolbox.AudioStreamBasicDescription description, AVFoundation.AVAudioChannelLayout layout);
new AVFoundation.AVAudioFormat : * AVFoundation.AVAudioChannelLayout -> AVFoundation.AVAudioFormat
パラメーター
- description
- AudioStreamBasicDescription
- 属性
適用対象
AVAudioFormat(Double, AVAudioChannelLayout)
指定した sampleRate
と チャネル を使用して、新しい AVAudioFormat を作成しますlayout
。
[Foundation.Export("initStandardFormatWithSampleRate:channelLayout:")]
public AVAudioFormat (double sampleRate, AVFoundation.AVAudioChannelLayout layout);
new AVFoundation.AVAudioFormat : double * AVFoundation.AVAudioChannelLayout -> AVFoundation.AVAudioFormat
パラメーター
- sampleRate
- Double
- layout
- AVAudioChannelLayout
- 属性
適用対象
AVAudioFormat(Double, UInt32)
指定された sampleRate
と channels
を使用して、新しい AVAudioFormat 作成します。
[Foundation.Export("initStandardFormatWithSampleRate:channels:")]
public AVAudioFormat (double sampleRate, uint channels);
new AVFoundation.AVAudioFormat : double * uint32 -> AVFoundation.AVAudioFormat
パラメーター
- sampleRate
- Double
- channels
- UInt32
- 属性
適用対象
AVAudioFormat(AVAudioCommonFormat, Double, Boolean, AVAudioChannelLayout)
指定した値を使用して新しい AVAudioFormat を作成します。
[Foundation.Export("initWithCommonFormat:sampleRate:interleaved:channelLayout:")]
public AVAudioFormat (AVFoundation.AVAudioCommonFormat format, double sampleRate, bool interleaved, AVFoundation.AVAudioChannelLayout layout);
new AVFoundation.AVAudioFormat : AVFoundation.AVAudioCommonFormat * double * bool * AVFoundation.AVAudioChannelLayout -> AVFoundation.AVAudioFormat
パラメーター
- format
- AVAudioCommonFormat
- sampleRate
- Double
- interleaved
- Boolean
- layout
- AVAudioChannelLayout
- 属性
適用対象
AVAudioFormat(AVAudioCommonFormat, Double, UInt32, Boolean)
指定した値を使用して新しい AVAudioFormat を作成します。
[Foundation.Export("initWithCommonFormat:sampleRate:channels:interleaved:")]
public AVAudioFormat (AVFoundation.AVAudioCommonFormat format, double sampleRate, uint channels, bool interleaved);
new AVFoundation.AVAudioFormat : AVFoundation.AVAudioCommonFormat * double * uint32 * bool -> AVFoundation.AVAudioFormat
パラメーター
- format
- AVAudioCommonFormat
- sampleRate
- Double
- channels
- UInt32
- interleaved
- Boolean
- 属性