public void AddWeakEvent_Result_SetBlueVideoGain(Delegate_OnResult_SetBlueVideoGain d)
 {
     WeakList_SetBlueVideoGain.Add(new WeakReference(d));
 }
Example #2
0
 public void SetBlueVideoGain(System.UInt32 InstanceID, System.UInt16 DesiredBlueVideoGain, object _Tag, Delegate_OnResult_SetBlueVideoGain _Callback)
 {
    UPnPArgument[] args = new UPnPArgument[2];
    args[0] = new UPnPArgument("InstanceID", InstanceID);
    args[1] = new UPnPArgument("DesiredBlueVideoGain", DesiredBlueVideoGain);
    _S.InvokeAsync("SetBlueVideoGain", args, new object[2]{_Tag,_Callback},new UPnPService.UPnPServiceInvokeHandler(Sink_SetBlueVideoGain), new UPnPService.UPnPServiceInvokeErrorHandler(Error_Sink_SetBlueVideoGain));
 }