GstPad: make it possible to set flags (e.g. PadFlags.ProxyCaps)

This commit is contained in:
Master T 2014-09-18 09:54:19 +02:00 committed by Stephan Sundermann
parent 9cc14f9579
commit ed9d9b3219

View file

@ -30,5 +30,13 @@ namespace Gst {
return ret; return ret;
} }
} }
public new PadFlags Flags {
get {
return (PadFlags)base.Flags;
}
set {
base.Flags = (uint)value;
}
}
} }
} }