Esempio n. 1
0
 /**
  * Gets a sample ApplicationInsights\Channel\Contracts\Session
  * @return ApplicationInsights\Channel\Contracts\Session
  */
 public static function getSampleSessionContext()
 {
     $context = new \ApplicationInsights\Channel\Contracts\Session();
     $context->setId('my_session_id');
     $context->setIsFirst(false);
     $context->setIsNew(false);
     return $context;
 }