Attachmate.Reflection.Framework Namespace > MyReflection Class > Start Method : Start(String,Boolean) Method |
'Declaration Public Overloads Shared Function Start( _ ByVal channelName As String, _ ByVal visible As Boolean _ ) As Guid
'Usage Dim channelName As String Dim visible As Boolean Dim value As Guid value = MyReflection.Start(channelName, visible)
public static Guid Start( string channelName, bool visible )
ForceStop()
method only after the Close()
method fails.)
The channelName parameter can be any valid string.
Use the same channelName string in CreateApplication(channelName)
to create an Application
object.
class MyApplication { private Guid instanceId; public void StartReflection() { instanceId = MyReflection.Start("myReflection", true); } public void StopReflection() { MyReflection.Close(ApplicationCloseOption.CloseNoSave); } }
Target Platforms: Microsoft Windows 7, Microsoft Windows Vista, Microsoft Windows XP, Microsoft Windows Server 2003 Terminal Services, Microsoft Windows Server 2008 Terminal Services