11.07.2015 Views

y - Net Developer

y - Net Developer

y - Net Developer

SHOW MORE
SHOW LESS
  • No tags were found...

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

amrameshreddy.blog.com78 CHAPTER 3 ■ EXPLORING THE WCF PROGRAMMING MODELramrameshreddy.blog.com}}}Quote msftQuote = new Quote();msftQuote.Ticker = "MSFT";msftQuote.Bid = 30.25M;msftQuote.Ask = 32.00M;msftQuote.Publisher = "PracticalWCF";Quote ibmQuote = new Quote();ibmQuote.Ticker = "IBM";ibmQuote.Bid = 80.50M;ibmQuote.Ask = 81.00M;ibmQuote.Publisher = "PracticalWCF";proxy.PublishQuote(msftQuote);proxy.PublishQuote(ibmQuote);Quote result = null;result = proxy.GetQuote("MSFT");Console.WriteLine("Ticker: {0} Ask: {1} Bid: {2}",result.Ticker, result.Ask, result.Bid);result = proxy.GetQuote("IBM");Console.WriteLine("Ticker: {0} Ask: {1} Bid: {2}",result.Ticker, result.Ask, result.Bid);try{result = proxy.GetQuote("ATT");}catch (Exception ex){Console.WriteLine(ex.Message);}if (result == null){Console.WriteLine("Ticker ATT not found!");}Console.WriteLine("Done! Press return to exit");Console.ReadLine();ramrameshreddyramrameshreddy

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!