Click here to Skip to main content
15,884,739 members
Articles / Mobile Apps / Windows Mobile

Managed Wrapper to Connection Manager and How to Bypass the Connection Planner

Rate me:
Please Sign up or sign in to vote.
4.33/5 (11 votes)
24 Sep 2008Public Domain4 min read 69.1K   1.5K   37  
This article explains how we can bypass the Connection Planner and establish a connection using the Connection Manager APIs on Windows Mobile devices.
//===============================================================================
// Microsoft patterns & practices
// Mobile Client Software Factory - July 2006
//===============================================================================
// Copyright  Microsoft Corporation.  All rights reserved.
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
// OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
// LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
// FITNESS FOR A PARTICULAR PURPOSE.
//===============================================================================
// The example companies, organizations, products, domain names,
// e-mail addresses, logos, people, places, and events depicted
// herein are fictitious.  No association with any real company,
// organization, product, domain name, email address, logo, person,
// places, or events is intended or should be inferred.
//===============================================================================

using System;
using System.Collections.Generic;
using System.Text;

namespace Microsoft.Practices.Mobile.Configuration
{
	/// <summary>
	///		This class is used by <see cref="ConfigurtionSectionRepository"/>  to return information
	///		about a configuration section.
	/// </summary>
	public class ConfigurationSectionInfo
	{
		private string sectionName;
		private string typeString;
		private string sectionXml;
		private bool isEncrypted;

		/// <summary>
		///		The constructor for this read-only data object.
		/// </summary>
		/// <param name="typeString">String used to create an instance of a class.</param>
		/// <param name="sectionXml">The XML data used to create an instance of the type.</param>
		public ConfigurationSectionInfo(string sectionName, string typeString, string sectionXml)
		{
			this.sectionName = sectionName;
			this.typeString = typeString;
			this.sectionXml = sectionXml;
		}

		/// <summary>
		///		Gets or sets whether this section is encrypted.
		/// </summary>
		public bool IsEncrypted
		{
			get { return isEncrypted; }
			set { isEncrypted = value; }
		}

		/// <summary>
		///		Gets the name of the section.
		/// </summary>
		public string SectionName
		{
			get { return sectionName; }
		}

		/// <summary>
		///		Gets the XML for the section data.
		/// </summary>
		public string SectionXml
		{
			get { return sectionXml; }
			internal set { sectionXml = value; }
		}

		/// <summary>
		///		Gets the string that contains "type, assembly" used to create an instance of the type.
		/// </summary>
		public string TypeString
		{
			get { return typeString; }
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication


Written By
Architect Tata Consultancy Services
India India
Naynesh Shah is a senior solution architect working with the Mobile Solutions - Technology Excellency Group of TATA Consultancy Services.

He specializes in architecting enterprise and embedded mobile solutions based on Windows CE and Windows Mobile. He is also involved in helping customers define the mobile middleware adoption strategy.

Comments and Discussions