Click here to Skip to main content
15,881,757 members
Articles / Programming Languages / C#

GeoNames .NET WCF Client

Rate me:
Please Sign up or sign in to vote.
4.40/5 (16 votes)
21 Apr 2009MIT3 min read 204.1K   3K   59  
A .NET WCF client for accessing the GeoNames services
#region Header

// 
//   ______ _______  _____  __   _ _______ _______ _______ _______
//  |  ____ |______ |     | | \  | |_____| |  |  | |______ |______
//  |_____| |______ |_____| |  \_| |     | |  |  | |______ ______|
//                                                                
// 

///////////////////////////////////////////////////////////////////////////////
//
// Myren.GeoNames.Client Assembly Metadata
//
//
// Author: 
//   Dennis Myren.(baretta2@gmail.com)
//
//
// NOTE:
//   Keyfile password: %D68Z=tktz52
//
///////////////////////////////////////////////////////////////////////////////
// 
// Copyright (c) 2008 Dennis Myren
// 
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
// 
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//
///////////////////////////////////////////////////////////////////////////////
#endregion // Header


using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Security.Permissions;


// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle ( "Myren.GeoNames.Client.dll" )]
[assembly: AssemblyDescription ( "Dennis Myren's GeoNames services client" )]
#if DEBUG
[assembly: AssemblyConfiguration ( "DEBUG" )]
#else
[assembly: AssemblyConfiguration ( "RELEASE" )]
#endif // DEBUG
[assembly: AssemblyCompany ( "Dennis Myren" )]
[assembly: AssemblyProduct ( "Myren\x00ae Tools" )]
[assembly: AssemblyCopyright ( "\x00a9 2008 Dennis Myren. All rights reserved." )]
[assembly: AssemblyTrademark ( "" )]
[assembly: AssemblyCulture ( "" )]

[assembly: CLSCompliant ( true )]

// Version information for an assembly consists of the following four values:
//
//      Major Version
//      Minor Version 
//      Build Number
//      Revision
//
// You can specify all the values or you can default the Revision and Build Numbers 
// by using the '*' as shown below:
[assembly: AssemblyVersion ( "1.5.0.0" )]
[assembly: AssemblyFileVersion ( "1.5.0.0" )]
[assembly: AssemblyInformationalVersion ( "1.5.0.0" )]

// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components.  If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible ( false )]
// The following GUID is for the ID of the typelib if this project is exposed to COM
//[assembly: Guid ( "09240527-c739-4be2-9383-782d718024cb" )]

[assembly: SecurityPermission (
  SecurityAction.RequestMinimum, SkipVerification = true )]

[assembly: AssemblyDelaySign ( false )]


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 The MIT License


Written By
Software Developer (Senior)
Norway Norway
Software Engineer at FAST, a Microsoft Subsidiary, in Oslo, Norway. Background in C++/PASCAL. Specialized in .NET and XML.

Comments and Discussions