// 32feet.NET - Personal Area Networking for .NET
//
// InTheHand.Net.IrDA.IrDAService
//
// Copyright (c) 2003-2010 In The Hand Ltd, All rights reserved.
// This source code is licensed under the In The Hand Community License - see License.txt
#region Using directives
using System;
using System.Diagnostics.CodeAnalysis;
#endregion
namespace InTheHand.Net.IrDA{
/// <summary>
/// Standard IrDA service names.
/// </summary>
#if V2
#if CODE_ANALYSIS
[SuppressMessage("Microsoft.Design", "CA1704:IdentifiersShouldBeSpelledCorrectly", Justification="Windows CE Equivalents", Scope="type")]
#endif
public static class IrDAService
{
#else
public sealed class IrDAService
{
private IrDAService(){}
#endif
/// <summary>
/// Well-known Service Name “IrDA:IrCOMM”
/// </summary>
#if CODE_ANALYSIS
[SuppressMessage("Microsoft.Design", "CA1704:IdentifiersShouldBeSpelledCorrectly", Justification = "Windows CE Equivalents"),
SuppressMessage("Microsoft.Design", "CA1709:IdentifiersShouldBeCasedCorrectly", Justification = "Windows CE Equivalents")]
#endif
public const string IrComm = "IrDA:IrCOMM";
/// <summary>
/// Well-known Service Name “IrLPT”
/// </summary>
public const string IrLpt = "IrLPT";
/// <summary>
/// Well-known Service Name “OBEX”
/// </summary>
public const string ObjectExchange = "OBEX";
}
}
|