コード例 #1
0
    	protected override void OnSessionChange(SessionChangeDescription desc)
    	{
            switch (desc.Reason)
            {
                case SessionChangeReason.SessionLogon:
					var user = CustomService.UserInformation(desc.SessionId);
					CustomService.DoWhatEverYouWant(user);
				break;
			}	
    	}
コード例 #2
0
 	protected override void OnSessionChange(SessionChangeDescription desc)
 	{
 		CustomService.UserInformation(desc.SessionId);
 	}