コード例 #1
0
ファイル: IOCFPlugin.cs プロジェクト: NikoXu/maccore
        public void Stop()
        {
            ThrowIfDisposed();
            var result = Interface.stop(Handle);

            IOService.ThrowIfError(result);
        }
コード例 #2
0
ファイル: IOCFPlugin.cs プロジェクト: NikoXu/maccore
        public void Start(NSDictionary propertyTable, IOService service)
        {
            ThrowIfDisposed();
            var result = Interface.start(Handle, propertyTable.Handle,
                                         service.Handle);

            IOService.ThrowIfError(result);
        }
コード例 #3
0
ファイル: IOCFPlugin.cs プロジェクト: NikoXu/maccore
        public int Probe(NSDictionary propertyTable, IOService service)
        {
            ThrowIfDisposed();
            int order;
            var result = Interface.probe(Handle, propertyTable.Handle,
                                         service.Handle, out order);

            IOService.ThrowIfError(result);
            return(order);
        }