<Service(GetType(IGPSService))> _

  • Thread starter Thread starter Good
  • Start date Start date
G

Good

Hi All

I am just studying the Pattern and Practice and find the following syntax in
some application block.

<Service(GetType(IGPSService))> _

What is this mean actually because I don't know how to search the help of
it.

Thanks
Good
 
It is an attribute that facilitates binding to a particular service. The
actual binding is done in the portion of the application that consumes the
attribute.

For more help, look at "attributes". You can also search the app block help
file for specifics on how different services are called and the attributes
used. There is generally an architecture section in the help file. The
logical architecture will give you a high level overview, while the physical
architecture will help you find where the actual moving parts are.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
 
Back
Top