1 write to Name
System (1)
net\System\Net\Internal.cs (1)
1906Name = name;
26 references to Name
System (26)
net\System\Net\_DigestClient.cs (3)
368clientResponse = authSession.GetOutgoingDigestBlob(incoming, httpWebRequest.CurrentMethod.Name, rawUri, null, false, false, out statusCode); 444string clientResponse = authSession.GetOutgoingDigestBlob(incoming, httpWebRequest.CurrentMethod.Name, null, null, false, true, out statusCode); 554this.Method = httpWebRequest.CurrentMethod.Name;
net\System\Net\HttpWebRequest.cs (13)
2518return _OriginVerb.Name; 4693int writeBufferLength = CurrentMethod.Name.Length + 4698offset = Encoding.ASCII.GetBytes(CurrentMethod.Name, 0, CurrentMethod.Name.Length, WriteBuffer, 0); 4788int writeBufferLength = CurrentMethod.Name.Length + 4796offset = Encoding.ASCII.GetBytes(CurrentMethod.Name, 0, CurrentMethod.Name.Length, WriteBuffer, 0); 4853int writeBufferLength = CurrentMethod.Name.Length + 4862offset = Encoding.ASCII.GetBytes(CurrentMethod.Name, 0, CurrentMethod.Name.Length, WriteBuffer, 0); 4894CurrentMethod.Name.Length + 4900offset = Encoding.ASCII.GetBytes(CurrentMethod.Name, 0, CurrentMethod.Name.Length, WriteBuffer, 0);
net\System\Net\HttpWebResponse.cs (2)
624serializationInfo.AddValue("m_Verb", m_Verb.Name); 716return m_Verb.Name;
net\System\Net\Internal.cs (8)
1936NamedHeaders[Get.Name] = Get; 1937NamedHeaders[Connect.Name] = Connect; 1938NamedHeaders[Head.Name] = Head; 1939NamedHeaders[Put.Name] = Put; 1940NamedHeaders[Post.Name] = Post; 1941NamedHeaders[MkCol.Name] = MkCol; 1945return this==verb || string.Compare(Name, verb.Name, StringComparison.OrdinalIgnoreCase)==0;