AuthenticationHeaderValue.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Type Name="AuthenticationHeaderValue" FullName="System.Net.Http.Headers.AuthenticationHeaderValue">
  3. <TypeSignature Language="C#" Value="public class AuthenticationHeaderValue : ICloneable" />
  4. <TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit AuthenticationHeaderValue extends System.Object implements class System.ICloneable" />
  5. <AssemblyInfo>
  6. <AssemblyName>System.Net.Http</AssemblyName>
  7. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  8. </AssemblyInfo>
  9. <Base>
  10. <BaseTypeName>System.Object</BaseTypeName>
  11. </Base>
  12. <Interfaces>
  13. <Interface>
  14. <InterfaceName>System.ICloneable</InterfaceName>
  15. </Interface>
  16. </Interfaces>
  17. <Docs>
  18. <remarks>
  19. <attribution license="cc4" from="Microsoft" modified="false" />
  20. <para>The <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> class provides support for the Authorization, ProxyAuthorization, WWW-Authenticate, and Proxy-Authenticate HTTP header values as defined in <see cref="http://go.microsoft.com/fwlink/?LinkID=241642">RFC 2616</see> by the IETF.</para>
  21. </remarks>
  22. <summary>
  23. <attribution license="cc4" from="Microsoft" modified="false" />
  24. <para>Represents authentication information in Authorization, ProxyAuthorization, WWW-Authenticate, and Proxy-Authenticate header values.</para>
  25. </summary>
  26. </Docs>
  27. <Members>
  28. <Member MemberName=".ctor">
  29. <MemberSignature Language="C#" Value="public AuthenticationHeaderValue (string scheme);" />
  30. <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string scheme) cil managed" />
  31. <MemberType>Constructor</MemberType>
  32. <AssemblyInfo>
  33. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  34. </AssemblyInfo>
  35. <Parameters>
  36. <Parameter Name="scheme" Type="System.String" />
  37. </Parameters>
  38. <Docs>
  39. <remarks>To be added.</remarks>
  40. <summary>
  41. <attribution license="cc4" from="Microsoft" modified="false" />
  42. <para>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> class.</para>
  43. </summary>
  44. <param name="scheme">
  45. <attribution license="cc4" from="Microsoft" modified="false" />The scheme to use for authorization.</param>
  46. </Docs>
  47. </Member>
  48. <Member MemberName=".ctor">
  49. <MemberSignature Language="C#" Value="public AuthenticationHeaderValue (string scheme, string parameter);" />
  50. <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string scheme, string parameter) cil managed" />
  51. <MemberType>Constructor</MemberType>
  52. <AssemblyInfo>
  53. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  54. </AssemblyInfo>
  55. <Parameters>
  56. <Parameter Name="scheme" Type="System.String" />
  57. <Parameter Name="parameter" Type="System.String" />
  58. </Parameters>
  59. <Docs>
  60. <remarks>To be added.</remarks>
  61. <summary>
  62. <attribution license="cc4" from="Microsoft" modified="false" />
  63. <para>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> class.</para>
  64. </summary>
  65. <param name="scheme">
  66. <attribution license="cc4" from="Microsoft" modified="false" />The scheme to use for authorization.</param>
  67. <param name="parameter">
  68. <attribution license="cc4" from="Microsoft" modified="false" />The credentials containing the authentication information of the user agent for the resource being requested.</param>
  69. </Docs>
  70. </Member>
  71. <Member MemberName="Equals">
  72. <MemberSignature Language="C#" Value="public override bool Equals (object obj);" />
  73. <MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance bool Equals(object obj) cil managed" />
  74. <MemberType>Method</MemberType>
  75. <AssemblyInfo>
  76. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  77. </AssemblyInfo>
  78. <ReturnValue>
  79. <ReturnType>System.Boolean</ReturnType>
  80. </ReturnValue>
  81. <Parameters>
  82. <Parameter Name="obj" Type="System.Object" />
  83. </Parameters>
  84. <Docs>
  85. <remarks>To be added.</remarks>
  86. <summary>
  87. <attribution license="cc4" from="Microsoft" modified="false" />
  88. <para>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> object.</para>
  89. </summary>
  90. <returns>
  91. <attribution license="cc4" from="Microsoft" modified="false" />
  92. <para>Returns <see cref="T:System.Boolean" />.</para>
  93. <para>true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</para>
  94. </returns>
  95. <param name="obj">
  96. <attribution license="cc4" from="Microsoft" modified="false" />The object to compare with the current object. </param>
  97. </Docs>
  98. </Member>
  99. <Member MemberName="GetHashCode">
  100. <MemberSignature Language="C#" Value="public override int GetHashCode ();" />
  101. <MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance int32 GetHashCode() cil managed" />
  102. <MemberType>Method</MemberType>
  103. <AssemblyInfo>
  104. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  105. </AssemblyInfo>
  106. <ReturnValue>
  107. <ReturnType>System.Int32</ReturnType>
  108. </ReturnValue>
  109. <Parameters />
  110. <Docs>
  111. <remarks>
  112. <attribution license="cc4" from="Microsoft" modified="false" />
  113. <para>A hash code is a numeric value that is used to identify an object during equality testing. It can also serve as an index for an object in a collection.</para>
  114. <para>The <see cref="M:System.Net.Http.Headers.AuthenticationHeaderValue.GetHashCode" /> method is suitable for use in hashing algorithms and data structures such as a hash table.</para>
  115. </remarks>
  116. <summary>
  117. <attribution license="cc4" from="Microsoft" modified="false" />
  118. <para>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> object.</para>
  119. </summary>
  120. <returns>
  121. <attribution license="cc4" from="Microsoft" modified="false" />
  122. <para>Returns <see cref="T:System.Int32" />.</para>
  123. <para>A hash code for the current object.</para>
  124. </returns>
  125. </Docs>
  126. </Member>
  127. <Member MemberName="Parameter">
  128. <MemberSignature Language="C#" Value="public string Parameter { get; }" />
  129. <MemberSignature Language="ILAsm" Value=".property instance string Parameter" />
  130. <MemberType>Property</MemberType>
  131. <AssemblyInfo>
  132. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  133. </AssemblyInfo>
  134. <ReturnValue>
  135. <ReturnType>System.String</ReturnType>
  136. </ReturnValue>
  137. <Docs>
  138. <value>To be added.</value>
  139. <remarks>To be added.</remarks>
  140. <summary>
  141. <attribution license="cc4" from="Microsoft" modified="false" />
  142. <para>Gets the credentials containing the authentication information of the user agent for the resource being requested.</para>
  143. </summary>
  144. </Docs>
  145. </Member>
  146. <Member MemberName="Parse">
  147. <MemberSignature Language="C#" Value="public static System.Net.Http.Headers.AuthenticationHeaderValue Parse (string input);" />
  148. <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Net.Http.Headers.AuthenticationHeaderValue Parse(string input) cil managed" />
  149. <MemberType>Method</MemberType>
  150. <AssemblyInfo>
  151. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  152. </AssemblyInfo>
  153. <ReturnValue>
  154. <ReturnType>System.Net.Http.Headers.AuthenticationHeaderValue</ReturnType>
  155. </ReturnValue>
  156. <Parameters>
  157. <Parameter Name="input" Type="System.String" />
  158. </Parameters>
  159. <Docs>
  160. <remarks>To be added.</remarks>
  161. <summary>
  162. <attribution license="cc4" from="Microsoft" modified="false" />
  163. <para>Converts a string to an <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> instance.</para>
  164. </summary>
  165. <returns>
  166. <attribution license="cc4" from="Microsoft" modified="false" />
  167. <para>Returns <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" />.</para>
  168. <para>An <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> instance.</para>
  169. </returns>
  170. <param name="input">
  171. <attribution license="cc4" from="Microsoft" modified="false" />A string that represents authentication header value information.</param>
  172. </Docs>
  173. </Member>
  174. <Member MemberName="Scheme">
  175. <MemberSignature Language="C#" Value="public string Scheme { get; }" />
  176. <MemberSignature Language="ILAsm" Value=".property instance string Scheme" />
  177. <MemberType>Property</MemberType>
  178. <AssemblyInfo>
  179. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  180. </AssemblyInfo>
  181. <ReturnValue>
  182. <ReturnType>System.String</ReturnType>
  183. </ReturnValue>
  184. <Docs>
  185. <value>To be added.</value>
  186. <remarks>To be added.</remarks>
  187. <summary>
  188. <attribution license="cc4" from="Microsoft" modified="false" />
  189. <para>Gets the scheme to use for authorization.</para>
  190. </summary>
  191. </Docs>
  192. </Member>
  193. <Member MemberName="System.ICloneable.Clone">
  194. <MemberSignature Language="C#" Value="object ICloneable.Clone ();" />
  195. <MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance object System.ICloneable.Clone() cil managed" />
  196. <MemberType>Method</MemberType>
  197. <AssemblyInfo>
  198. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  199. </AssemblyInfo>
  200. <ReturnValue>
  201. <ReturnType>System.Object</ReturnType>
  202. </ReturnValue>
  203. <Parameters />
  204. <Docs>
  205. <remarks>To be added.</remarks>
  206. <summary>
  207. <attribution license="cc4" from="Microsoft" modified="false" />
  208. <para>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> instance.</para>
  209. </summary>
  210. <returns>
  211. <attribution license="cc4" from="Microsoft" modified="false" />
  212. <para>Returns <see cref="T:System.Object" />.</para>
  213. <para>A copy of the current instance.</para>
  214. </returns>
  215. </Docs>
  216. </Member>
  217. <Member MemberName="ToString">
  218. <MemberSignature Language="C#" Value="public override string ToString ();" />
  219. <MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance string ToString() cil managed" />
  220. <MemberType>Method</MemberType>
  221. <AssemblyInfo>
  222. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  223. </AssemblyInfo>
  224. <ReturnValue>
  225. <ReturnType>System.String</ReturnType>
  226. </ReturnValue>
  227. <Parameters />
  228. <Docs>
  229. <remarks>To be added.</remarks>
  230. <summary>
  231. <attribution license="cc4" from="Microsoft" modified="false" />
  232. <para>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> object.</para>
  233. </summary>
  234. <returns>
  235. <attribution license="cc4" from="Microsoft" modified="false" />
  236. <para>Returns <see cref="T:System.String" />.</para>
  237. <para>A string that represents the current object.</para>
  238. </returns>
  239. </Docs>
  240. </Member>
  241. <Member MemberName="TryParse">
  242. <MemberSignature Language="C#" Value="public static bool TryParse (string input, out System.Net.Http.Headers.AuthenticationHeaderValue parsedValue);" />
  243. <MemberSignature Language="ILAsm" Value=".method public static hidebysig bool TryParse(string input, class System.Net.Http.Headers.AuthenticationHeaderValue parsedValue) cil managed" />
  244. <MemberType>Method</MemberType>
  245. <AssemblyInfo>
  246. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  247. </AssemblyInfo>
  248. <ReturnValue>
  249. <ReturnType>System.Boolean</ReturnType>
  250. </ReturnValue>
  251. <Parameters>
  252. <Parameter Name="input" Type="System.String" />
  253. <Parameter Name="parsedValue" Type="System.Net.Http.Headers.AuthenticationHeaderValue&amp;" RefType="out" />
  254. </Parameters>
  255. <Docs>
  256. <param name="input">To be added.</param>
  257. <param name="parsedValue">To be added.</param>
  258. <summary>To be added.</summary>
  259. <returns>To be added.</returns>
  260. <remarks>To be added.</remarks>
  261. </Docs>
  262. </Member>
  263. </Members>
  264. </Type>