コード例 #1
0
        internal void InheritInvokeOptions(DNSService fromService)
        {
            // We set the MultiThreadedCallback property first,
            // as it has the potential to affect the other properties.
            AllowMultithreadedCallbacks = fromService.AllowMultithreadedCallbacks;

            AllowApplicationForms = fromService.AllowApplicationForms;
            InvokeableObject      = fromService.InvokeableObject;
        }
コード例 #2
0
        internal void InheritInvokeOptions(DNSService fromService)
        {
            // We set the MultiThreadedCallback property first,
            // as it has the potential to affect the other properties.
            AllowMultithreadedCallbacks = fromService.AllowMultithreadedCallbacks;

            AllowApplicationForms = fromService.AllowApplicationForms;
            InvokeableObject = fromService.InvokeableObject;
        }
コード例 #3
0
ファイル: DNSService.cs プロジェクト: pacificIT/airphone-tv
 internal void InheritInvokeOptions(DNSService fromService)
 {
     AllowApplicationForms = fromService.AllowApplicationForms;
     InvokeableObject = fromService.InvokeableObject;
     AllowMultithreadedCallbacks = fromService.AllowMultithreadedCallbacks;
 }