Monorepo/EDMI_ClientSuite/MyApplication.vb
Jonathan Jenne e6914c6596 jj
2019-02-01 16:30:31 +01:00

29 lines
714 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
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