2 writes to peekTimeout
System.ServiceModel (2)
System\ServiceModel\Channels\ChannelDemuxer.cs (2)
31
this.
peekTimeout
= ChannelDemuxer.UseDefaultReceiveTimeout; //use the default receive timeout (original behavior)
44
this.
peekTimeout
= value;
4 references to peekTimeout
System.ServiceModel (4)
System\ServiceModel\Channels\ChannelDemuxer.cs (4)
40
return this.
peekTimeout
;
77
return (TypedChannelDemuxer)(object)new InputSessionChannelDemuxer(context, this.
peekTimeout
, this.maxPendingSessions);
79
return (TypedChannelDemuxer)(object)new ReplySessionChannelDemuxer(context, this.
peekTimeout
, this.maxPendingSessions);
81
return (TypedChannelDemuxer)(object)new DuplexSessionChannelDemuxer(context, this.
peekTimeout
, this.maxPendingSessions);