Microsoft Bot Framework FAQ - IDialogStack.Call VS IDialogStack.Forward (要不要等使用者輸入呢?)

使用 Microsoft Bot Framework 來開發 BOT 時,

我們常常會從 Root Dialog Call 它的 Child Dialg。

您是使用 Call 還是 Forward 呢? 

您知道它們的差別嗎?

有時候我們需要一進到 Child Dialog 就馬上執行先前使用者輸入的東東,而不需等待使用者再輸入一次,

這時,我們要用 Forward 還是 Call 呢? 

...繼續閱讀 »

System.Web.Security.MachineKey.Protect & Unprotect 問題

有朋友詢問它透過 System.Web.Security.MachineKey.Protect 再將 Byte Array 轉成 Base64 字串後,

在同一台電腦上,透過 Console 程式去解,卻發生 System.Security.Cryptography.CryptographicException 的錯誤。

發生 System.Security.Cryptography.CryptographicException
  HResult=0x80131430
  Message=進行密碼編譯作業期間發生錯誤。
  Source=System.Web
  StackTrace: 
   於 System.Web.Security.Cryptography.HomogenizingCryptoServiceWrapper.HomogenizeErrors ...

...繼續閱讀 »

[Xamarin]如何查看 iOS app 的LOG-2

環境: iOS,Xamarin

使用 Xamarin Debug 部署到 iphone 上時,

App在前景時,當我們在程式中寫 Console.WriteLine 時,可以看到輸出資訊。

當我們將 App 拉掉後,Xamarin Studio 就無法看到 app 的Log了,

這時要如何看到我們程式中寫的Log呢?

...繼續閱讀 »

[Xamarin]如何查看 iOS app 的LOG

環境: iOS,Xamarin

使用 Xamarin Debug 部署到 iphone 上時,

App在前景時,當我們在程式中寫 Console.WriteLine 時,可以看到輸出資訊。

當我們將 App 拉掉後,Xamarin Studio 就無法看到 app 的Log了,

這時要如何看到我們程式中寫的Log呢?

...繼續閱讀 »