3 writes to remainingSize
System.ServiceModel (3)
System\ServiceModel\Channels\MsmqInputMessage.cs (3)
151this.remainingSize = maxSize; 165this.remainingSize -= requiredSize; 171this.remainingSize -= availableSize;
2 references to remainingSize
System.ServiceModel (2)
System\ServiceModel\Channels\MsmqInputMessage.cs (2)
161if (requiredSize > this.remainingSize) 170int availableSize = Math.Min(desiredSize, this.remainingSize);