mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-03 15:06:34 +00:00
21 lines
439 B
C#
21 lines
439 B
C#
// This file was generated by the Gtk# code generator.
|
|
// Any changes made will be lost if regenerated.
|
|
|
|
namespace Gst.Interfaces {
|
|
|
|
using System;
|
|
|
|
public delegate void ProbeNeededHandler(object o, ProbeNeededArgs args);
|
|
|
|
public class ProbeNeededArgs : GLib.SignalArgs {
|
|
public string Property {
|
|
get {
|
|
IntPtr pspec = (IntPtr) Args[0];
|
|
Gst.PropertyInfo pi = new Gst.PropertyInfo (pspec);
|
|
|
|
return pi.Name;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|