HubConnection.Reconnecting 이벤트
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
기본 연결이 HubConnection 끊긴 후 가 다시 연결하기 시작할 때 발생합니다.
public:
event Func<Exception ^, System::Threading::Tasks::Task ^> ^ Reconnecting;
public event Func<Exception,System.Threading.Tasks.Task> Reconnecting;
public event Func<Exception?,System.Threading.Tasks.Task>? Reconnecting;
member this.Reconnecting : Func<Exception, System.Threading.Tasks.Task>
Public Event Reconnecting As Func(Of Exception, Task)
이벤트 유형
예제
다음 예제에서는 처리기를 Reconnecting 이벤트에 연결하고 제공된 인수를 확인하여 오류를 기록합니다.
connection.Reconnecting += (exception) =>
{
Console.WriteLine($"Connection started reconnecting due to an error: {exception}");
};
설명
발생한 은 Exception 이 처리기에 유일한 인수로 전달됩니다.