IXmlMtomReaderInitializer.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Type Name="IXmlMtomReaderInitializer" FullName="System.Xml.IXmlMtomReaderInitializer">
  3. <TypeSignature Language="C#" Value="public interface IXmlMtomReaderInitializer" />
  4. <TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract IXmlMtomReaderInitializer" />
  5. <AssemblyInfo>
  6. <AssemblyName>System.Runtime.Serialization</AssemblyName>
  7. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  8. </AssemblyInfo>
  9. <Interfaces />
  10. <Docs>
  11. <remarks>To be added.</remarks>
  12. <summary>
  13. <attribution license="cc4" from="Microsoft" modified="false" />
  14. <para>Specifies implementation requirements for XML MTOM readers that derive from this interface.</para>
  15. </summary>
  16. </Docs>
  17. <Members>
  18. <Member MemberName="SetInput">
  19. <MemberSignature Language="C#" Value="public void SetInput (System.IO.Stream stream, System.Text.Encoding[] encodings, string contentType, System.Xml.XmlDictionaryReaderQuotas quotas, int maxBufferSize, System.Xml.OnXmlDictionaryReaderClose onClose);" />
  20. <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void SetInput(class System.IO.Stream stream, class System.Text.Encoding[] encodings, string contentType, class System.Xml.XmlDictionaryReaderQuotas quotas, int32 maxBufferSize, class System.Xml.OnXmlDictionaryReaderClose onClose) cil managed" />
  21. <MemberType>Method</MemberType>
  22. <AssemblyInfo>
  23. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  24. </AssemblyInfo>
  25. <ReturnValue>
  26. <ReturnType>System.Void</ReturnType>
  27. </ReturnValue>
  28. <Parameters>
  29. <Parameter Name="stream" Type="System.IO.Stream" />
  30. <Parameter Name="encodings" Type="System.Text.Encoding[]" />
  31. <Parameter Name="contentType" Type="System.String" />
  32. <Parameter Name="quotas" Type="System.Xml.XmlDictionaryReaderQuotas" />
  33. <Parameter Name="maxBufferSize" Type="System.Int32" />
  34. <Parameter Name="onClose" Type="System.Xml.OnXmlDictionaryReaderClose" />
  35. </Parameters>
  36. <Docs>
  37. <remarks>To be added.</remarks>
  38. <summary>
  39. <attribution license="cc4" from="Microsoft" modified="false" />
  40. <para>Specifies initialization requirements for XML MTOM readers that read a stream.</para>
  41. </summary>
  42. <param name="stream">
  43. <attribution license="cc4" from="Microsoft" modified="false" />The stream from which to read.</param>
  44. <param name="encodings">
  45. <attribution license="cc4" from="Microsoft" modified="false" />The possible character encodings of the stream.</param>
  46. <param name="contentType">
  47. <attribution license="cc4" from="Microsoft" modified="false" />The Content-Type of the message. Can be null if the MIME type is present in the document being read.</param>
  48. <param name="quotas">
  49. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlDictionaryReaderQuotas" /> to apply to the reader.</param>
  50. <param name="maxBufferSize">
  51. <attribution license="cc4" from="Microsoft" modified="false" />The maximum allowed size of the buffer.</param>
  52. <param name="onClose">
  53. <attribution license="cc4" from="Microsoft" modified="false" />The delegate to use when an onClose event happens.</param>
  54. </Docs>
  55. </Member>
  56. <Member MemberName="SetInput">
  57. <MemberSignature Language="C#" Value="public void SetInput (byte[] buffer, int offset, int count, System.Text.Encoding[] encodings, string contentType, System.Xml.XmlDictionaryReaderQuotas quotas, int maxBufferSize, System.Xml.OnXmlDictionaryReaderClose onClose);" />
  58. <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void SetInput(unsigned int8[] buffer, int32 offset, int32 count, class System.Text.Encoding[] encodings, string contentType, class System.Xml.XmlDictionaryReaderQuotas quotas, int32 maxBufferSize, class System.Xml.OnXmlDictionaryReaderClose onClose) cil managed" />
  59. <MemberType>Method</MemberType>
  60. <AssemblyInfo>
  61. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  62. </AssemblyInfo>
  63. <ReturnValue>
  64. <ReturnType>System.Void</ReturnType>
  65. </ReturnValue>
  66. <Parameters>
  67. <Parameter Name="buffer" Type="System.Byte[]" />
  68. <Parameter Name="offset" Type="System.Int32" />
  69. <Parameter Name="count" Type="System.Int32" />
  70. <Parameter Name="encodings" Type="System.Text.Encoding[]" />
  71. <Parameter Name="contentType" Type="System.String" />
  72. <Parameter Name="quotas" Type="System.Xml.XmlDictionaryReaderQuotas" />
  73. <Parameter Name="maxBufferSize" Type="System.Int32" />
  74. <Parameter Name="onClose" Type="System.Xml.OnXmlDictionaryReaderClose" />
  75. </Parameters>
  76. <Docs>
  77. <remarks>To be added.</remarks>
  78. <summary>
  79. <attribution license="cc4" from="Microsoft" modified="false" />
  80. <para>Specifies initialization requirements for XML MTOM readers that read a buffer.</para>
  81. </summary>
  82. <param name="buffer">
  83. <attribution license="cc4" from="Microsoft" modified="false" />The buffer from which to read.</param>
  84. <param name="offset">
  85. <attribution license="cc4" from="Microsoft" modified="false" />The starting position from which to read in <paramref name="buffer" />.</param>
  86. <param name="count">
  87. <attribution license="cc4" from="Microsoft" modified="false" />The number of bytes that can be read from <paramref name="buffer" />.</param>
  88. <param name="encodings">
  89. <attribution license="cc4" from="Microsoft" modified="false" />The possible character encodings of the input.</param>
  90. <param name="contentType">
  91. <attribution license="cc4" from="Microsoft" modified="false" />The Content-Type of the message. Can be null if the MIME type is present in the document being read.</param>
  92. <param name="quotas">
  93. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlDictionaryReaderQuotas" /> to apply to the reader.</param>
  94. <param name="maxBufferSize">
  95. <attribution license="cc4" from="Microsoft" modified="false" />The maximum allowed size of the buffer.</param>
  96. <param name="onClose">
  97. <attribution license="cc4" from="Microsoft" modified="false" />The delegate to use when an onClose event happens.</param>
  98. </Docs>
  99. </Member>
  100. </Members>
  101. </Type>