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