mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-04 23:46:43 +00:00
27 lines
715 B
C#
27 lines
715 B
C#
|
// This file was generated by the Gtk# code generator.
|
||
|
// Changed to take strings instead of GParamSpecs.
|
||
|
|
||
|
namespace Gst.Interfaces {
|
||
|
|
||
|
using System;
|
||
|
|
||
|
public interface PropertyProbe : GLib.IWrapper {
|
||
|
event Gst.Interfaces.ProbeNeededHandler ProbeNeeded;
|
||
|
|
||
|
string[] Properties { get; }
|
||
|
object[] GetValues (string property);
|
||
|
bool NeedsProbe (string property);
|
||
|
void Probe (string property);
|
||
|
|
||
|
object[] ProbeAndGetValues (string property);
|
||
|
}
|
||
|
|
||
|
[GLib.GInterface (typeof (PropertyProbeAdapter))]
|
||
|
public interface PropertyProbeImplementor : GLib.IWrapper {
|
||
|
string[] Properties { get; }
|
||
|
bool NeedsProbe (string property);
|
||
|
void ProbeProperty (string property);
|
||
|
object[] GetValues (string property);
|
||
|
}
|
||
|
}
|