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);
263
public Task Task { get { return (Task)
_tcsInfo
.TaskProperty.GetValue(_tcsInstance); } }
267
return (bool)
_tcsInfo
.TrySetResultMethod.Invoke(_tcsInstance, new object[] { result });
272
return (bool)
_tcsInfo
.TrySetExceptionMethod.Invoke(_tcsInstance, new object[] { exception });
277
return (bool)
_tcsInfo
.TrySetCanceledMethod.Invoke(_tcsInstance, Array.Empty<object>());