System.Net.WebHeaderCollection.WebHeaderCollection.SetInternal C# (CSharp) Метод

SetInternal() приватный Метод

private SetInternal ( string header ) : void
header string
Результат void
		internal void SetInternal (string header)
		{
			int pos = header.IndexOf (':');
			if (pos == -1)
				throw new ArgumentException ("no colon found", "header");				

			SetInternal (header.Substring (0, pos), header.Substring (pos + 1));
		}

Same methods

WebHeaderCollection.WebHeaderCollection::SetInternal ( string name, string value ) : void