30 lines
751 B
VB.net
30 lines
751 B
VB.net
Imports System.ServiceModel
|
|
Imports System.Threading
|
|
Imports DigitalData.Modules.Logging
|
|
Imports EDMI_ClientSuite.NetworkService_DDEDM
|
|
|
|
Namespace My
|
|
''' <summary>
|
|
''' Extends the My Namespace
|
|
''' Example: My.LogConfig
|
|
''' </summary>
|
|
<HideModuleName()>
|
|
Module Extension
|
|
Property LogConfig As LogConfig
|
|
Property ChannelFactory As ChannelFactory(Of IEDMServiceChannel)
|
|
Property Channel As IEDMServiceChannel
|
|
Property MainForm As frmMain
|
|
End Module
|
|
|
|
''' <summary>
|
|
''' Extends the My.Application Namespace
|
|
''' Example: My.Application.User
|
|
''' </summary>
|
|
Partial Class MyApplication
|
|
' User Config
|
|
Public User As New UserState()
|
|
End Class
|
|
End Namespace
|
|
|
|
|