MidiClient Class
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.
Main entry point to use MIDI in MacOS X and iOS.
public class MidiClient : CoreMidi.MidiObject
type MidiClient = class
inherit MidiObject
- Inheritance
Remarks
The MidiClient class is your gateway to communicate with the MIDI subsystem on MacOS and iOS.
You typically will create an instance of MidiClient with a name that identifies this particular client, connect to the various events that are exposed to this class and create both input and output midi ports using the CreateInputPort(String)CreateOutputPort(String) methods.
client = new MidiClient ("CoreMidiSample MIDI CLient");
client.ObjectAdded += delegate(object sender, ObjectAddedOrRemovedEventArgs e) {
Console.WriteLine ("Object {0} added to {1}", e.Child, e.Parent);
};
client.ObjectRemoved += delegate(object sender, ObjectAddedOrRemovedEventArgs e) {
Console.WriteLine ("Object {0} removed to {1}", e.Child, e.Parent);
};
client.PropertyChanged += delegate(object sender, ObjectPropertyChangedEventArgs e) {
Console.WriteLine ("Property {0} changed on {1}", e.PropertyName, e.MidiObject);
};
client.ThruConnectionsChanged += delegate {
Console.WriteLine ("Thru connections changed");
};
client.SerialPortOwnerChanged += delegate {
Console.WriteLine ("Serial port changed");
};
//
// Create your input and output ports
//
outputPort = client.CreateOutputPort ("CoreMidiSample Output Port");
inputPort = client.CreateInputPort ("CoreMidiSample Input Port");
// Print out packets when we receive them
inputPort.MessageReceived += delegate(object sender, MidiPacketsEventArgs e) {
Console.WriteLine ("Got {0} packets", e.Packets.Length);
};
The following events will be raised on your MidiClient instance: IOError, ObjectAdded, ObjectRemoved, PropertyChanged, SerialPortOwnerChanged, SetupChanged and ThruConnectionsChanged
Constructors
MidiClient(String) |
Creates a new MidiClient. |
Properties
Handle |
Handle (pointer) to the unmanaged object representation. (Inherited from MidiObject) |
Name |
Name of this MidiClient. |
Methods
CreateInputPort(String) |
Creates a new MIDI input port. |
CreateOutputPort(String) |
Creates a new MIDI output port. |
CreateVirtualDestination(String, MidiError) | |
CreateVirtualSource(String, MidiError) | |
Dispose() |
Releases the resources used by the MidiObject object. (Inherited from MidiObject) |
Dispose(Boolean) |
Releases the resources used by the MidiClient object. |
GetData(IntPtr) | (Inherited from MidiObject) |
GetDictionaryProperties(Boolean) |
Returns the object properties as a dictionary. (Inherited from MidiObject) |
GetString(IntPtr) | (Inherited from MidiObject) |
RemoveProperty(String) | (Inherited from MidiObject) |
SetData(IntPtr, NSData) | (Inherited from MidiObject) |
SetString(IntPtr, String) | (Inherited from MidiObject) |
ToString() |
Events
IOError |
Event raised when there there is an error in the MIDI pipeline. |
ObjectAdded |
Event raised when a MidiDevice, MidiEntity or MidiEndpoint has been added to the session. |
ObjectRemoved |
Event raised when a MidiDevice, MidiEntity or MidiEndpoint has been removed the session. |
PropertyChanged |
The property of an object has changed. |
SerialPortOwnerChanged | |
SetupChanged |
The MIDI setup has changed. Not necessary to implement if you listen to ObjectAdded, ObjectRemoved, PropertyChanged, ThruConnectionsChanged and SerialPortOwnerChanged events. |
ThruConnectionsChanged |
Event raised when a persistent connection has been added or removed. |