Click here to Skip to main content
15,896,348 members
Articles / Mobile Apps

Yahoo! Managed

Rate me:
Please Sign up or sign in to vote.
4.87/5 (56 votes)
8 Jan 2015Apache12 min read 529.8K   25.5K   262  
Download financial data, managing online portfolio or using Search BOSS from Yahoo! with .NET
' ******************************************************************************
' ** 
' **  Yahoo Finance Managed
' **  Written by Marius Häusler 2010
' **  It would be pleasant, if you contact me when you are using this code.
' **  Contact: YahooFinanceManaged@gmail.com
' **  Project Home: http://code.google.com/p/yahoo-finance-managed/
' **  
' ******************************************************************************
' **  
' **  Copyright 2010 Marius Häusler
' **  
' **  Licensed under the Apache License, Version 2.0 (the "License");
' **  you may not use this file except in compliance with the License.
' **  You may obtain a copy of the License at
' **  
' **    http://www.apache.org/licenses/LICENSE-2.0
' **  
' **  Unless required by applicable law or agreed to in writing, software
' **  distributed under the License is distributed on an "AS IS" BASIS,
' **  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
' **  See the License for the specific language governing permissions and
' **  limitations under the License.
' ** 
' ******************************************************************************


Public Enum Server
    <Description("Argentina")> Argentina = 0
    <Description("Australia")> Australia = 1
    <Description("Brazil")> Brazil = 2
    <Description("Canada")> Canada = 3
    <Description("France")> France = 4
    <Description("Germany")> Germany = 5
    <Description("Hong Kong")> HongKong = 6
    <Description("India")> India = 7
    <Description("Italy")> Italy = 8
    <Description("Korea")> Korea = 9
    <Description("Mexico")> Mexico = 10
    <Description("Singapore")> Singapore = 11
    <Description("Spain")> Spain = 12
    <Description("UK")> UK = 13
    <Description("USA")> USA = 14
    <Description("YQL WebService")> YQL = 15
End Enum

Public Class Reflect
    Private Shared mHelper As New MyHelper
    Public Shared Function GetEnumDescription(ByVal enumItem As [Enum]) As String
        Return mHelper.GetEnumDescription(enumItem)
    End Function
End Class

Public Enum Language
    Arabic
    Bulgarian
    Catalan
    Chinese_Simplified
    Chinese_Traditional
    Croatian
    Czech
    Danish
    Dutch
    English
    Estonian
    Filipino
    Finnish
    French
    German
    Greek
    Hebrew
    Hungarian
    Icelandic
    Indian
    Indonesian
    Italian
    Japanese
    Korean
    Latvian
    Lithuanian
    Malaysian
    Norwegian
    Persian
    Polish
    Portuguese
    Romanian
    Russian
    Slovak
    Serbian
    Slovenian
    Spanish
    Swedish
    Thai
    Turkish
    Vietnamese
End Enum

Public Enum Region
    Argentinia
    Austria
    Australia
    Brazil
    Canada
    Catalan
    Chile
    Columbia
    Czechia
    Denmark
    Finland
    France
    Germany
    HongKong
    Hungary
    Indonesia
    India
    Israel
    Italy
    Japan
    Korea
    Malaysia
    Mexico
    Netherlands
    NewZealand
    Norway
    Peru
    Philippines
    Romania
    Russia
    Singapore
    Spain
    Sweden
    Switzerland
    Thailand
    Taiwan
    Turkey
    UnitedKingdom
    UnitedStates
    Venezuela
    Vietnam
End Enum

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 Apache License, Version 2.0


Written By
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions