System.Net.Http.HttpClientHandler.EnsureModifiability C# (CSharp) Method

EnsureModifiability() private method

private EnsureModifiability ( ) : void
return void
		internal void EnsureModifiability ()
		{
			if (sentRequest)
				throw new InvalidOperationException (
					"This instance has already started one or more requests. " +
					"Properties can only be modified before sending the first request.");
		}