コード例 #1
0
ファイル: Group.cs プロジェクト: CarverLab/Oyster
 public void RemoveStreamingEncoder(int StreamingEncoderId)
 {
     try
     {
         Functions F = new Functions();
         F.RemoveStreamingEncoderFromGroup(StreamingEncoderId,mvarID);
         F.Dispose();
     }
     catch(Exception Err)
     {
         throw new ApplicationException(Err.Message,Err.InnerException);
     }
 }