Example #1
0
 /// <summary>
 /// Gets the name of the session that this application is part of, if any.
 /// </summary>
 /// <returns>Session name string.</returns>
 public static string GetSessionName()
 {
     using (FStringUnsafe resultUnsafe = FStringPool.New())
     {
         Native_FApp.GetSessionName(ref resultUnsafe.Array);
         return(resultUnsafe.Value);
     }
 }