1 write to _tcsInfo
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
259_tcsInfo = TaskCompletionSourceInfo.GetTaskCompletionSourceInfo(resultType);
5 references to _tcsInfo
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (5)
260_tcsInstance = Activator.CreateInstance(_tcsInfo.GenericType); 263public Task Task { get { return (Task)_tcsInfo.TaskProperty.GetValue(_tcsInstance); } } 267return (bool)_tcsInfo.TrySetResultMethod.Invoke(_tcsInstance, new object[] { result }); 272return (bool)_tcsInfo.TrySetExceptionMethod.Invoke(_tcsInstance, new object[] { exception }); 277return (bool)_tcsInfo.TrySetCanceledMethod.Invoke(_tcsInstance, Array.Empty<object>());