public override void onConnected(Session session)
        {
            Log.i(LOGTAG, "Connected to the session.");

            //Start screensharing
            if (mPublisher == null)
            {
                mPublisher = new Publisher(ScreenSharingActivity.this, "publisher");
                mPublisher.PublisherListener    = this;
                mPublisher.PublisherVideoType   = PublisherKit.PublisherKitVideoType.PublisherKitVideoTypeScreen;
                mPublisher.AudioFallbackEnabled = false;
                ScreensharingCapturer screenCapturer = new ScreensharingCapturer(this, mPubScreenWebView);
                mPublisher.Capturer = screenCapturer;
                loadScreenWebView();

                mSession.publish(mPublisher);
            }
        }
		public override void onConnected(Session session)
		{
			Log.i(LOGTAG, "Connected to the session.");

			//Start screensharing
			if (mPublisher == null)
			{
				mPublisher = new Publisher(ScreenSharingActivity.this, "publisher");
				mPublisher.PublisherListener = this;
				mPublisher.PublisherVideoType = PublisherKit.PublisherKitVideoType.PublisherKitVideoTypeScreen;
				mPublisher.AudioFallbackEnabled = false;
				ScreensharingCapturer screenCapturer = new ScreensharingCapturer(this, mPubScreenWebView);
				mPublisher.Capturer = screenCapturer;
				loadScreenWebView();

				mSession.publish(mPublisher);
			}

		}