WidcommBluetoothSecurity.cs :  » Business-Application » 32feet.NET » InTheHand » Net » Bluetooth » Widcomm » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Business Application » 32feet.NET 
32feet.NET » InTheHand » Net » Bluetooth » Widcomm » WidcommBluetoothSecurity.cs
// 32feet.NET - Personal Area Networking for .NET
//
// InTheHand.Net.Widcomm.WidcommSocketExceptions
// 
// Copyright (c) 2009-2010 In The Hand Ltd, All rights reserved.
// Copyright (c) 2009-2010 Alan J. McFarlane, All rights reserved.
// This source code is licensed under the In The Hand Community License - see License.txt

using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
using InTheHand.Net.Bluetooth.Factory;

namespace InTheHand.Net.Bluetooth.Widcomm{
    sealed class WidcommBluetoothSecurity : IBluetoothSecurity
    {
        WidcommBtInterface m_btIf;

        internal WidcommBluetoothSecurity(WidcommBluetoothFactoryBase factory)
        {
            m_btIf = factory.GetWidcommBtInterface();
        }

        #region Pair/Un-pair
        public bool PairRequest(BluetoothAddress device, string pin)
        {
            // Win32+MSFT supports pin=null to show the UI, Widcomm has no 
            // support for that, so copy what we do in CE/WM and fail here.
            if (pin == null) {
                throw new ArgumentNullException("pin");
            }
            BOND_RETURN_CODE ret = Bond_(device, pin);
            Debug.Assert((ret == BOND_RETURN_CODE.SUCCESS)
                    || (ret == BOND_RETURN_CODE.ALREADY_BONDED)
                    || (ret == BOND_RETURN_CODE.FAIL),
                "Unexpected Bond result: " + ret);
            return (ret == BOND_RETURN_CODE.SUCCESS)
                    || (ret == BOND_RETURN_CODE.ALREADY_BONDED);
        }

        internal BOND_RETURN_CODE Bond_(BluetoothAddress device, string pin)
        {
            WidcommUtils.Trace_WriteLine("Calling CBtIf:Bond...");
            BOND_RETURN_CODE ret = m_btIf.Bond(device, pin);
            WidcommUtils.Trace_WriteLine("Bond returned: {0} = 0x{1:X}", ret, (int)ret);
            return ret;
        }

        public bool RemoveDevice(BluetoothAddress device)
        {
            bool ret = m_btIf.UnBond(device);
            return ret;
        }
        #endregion

        #region SavePin/forget
        public bool SetPin(BluetoothAddress device, string pin)
        {
            throw new NotImplementedException("The method or operation is not implemented.");
        }

        public bool RevokePin(BluetoothAddress device)
        {
            throw new NotImplementedException("The method or operation is not implemented.");
        }
        #endregion

        #region PinRequest/etc
        public BluetoothAddress GetPinRequest()
        {
            throw new NotSupportedException();
        }

        public bool RefusePinRequest(BluetoothAddress device)
        {
            throw new NotSupportedException();
        }
        #endregion

        #region SetLinkKey
        public bool SetLinkKey(BluetoothAddress a, Guid linkkey)
        {
            throw new NotSupportedException();
        }
        #endregion

    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.