websocket-sharp/websocket-sharp/doc/mdoc/WebSocketSharp.Server/RequestEventArgs.xml.remove

58 lines
2.6 KiB
Plaintext

<Type Name="RequestEventArgs" FullName="WebSocketSharp.Server.RequestEventArgs">
<TypeSignature Language="C#" Value="public class RequestEventArgs : EventArgs" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit RequestEventArgs extends System.EventArgs" />
<AssemblyInfo>
<AssemblyName>websocket-sharp</AssemblyName>
</AssemblyInfo>
<Base>
<BaseTypeName>System.EventArgs</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>
Contains the event data associated with the request events of the <see cref="T:WebSocketSharp.Server.HttpServer" /> class.
</summary>
<remarks>
A request event occurs when a <see cref="T:WebSocketSharp.Server.HttpServer" /> instance receives an HTTP request.
If you want to get the HTTP request objects, you should access the <see cref="!:ResponseEventArgs.Request" /> property.
If you want to get the HTTP response objects to send, you should access the <see cref="!:ResponseEventArgs.Response" /> property.
</remarks>
</Docs>
<Members>
<Member MemberName="Request">
<MemberSignature Language="C#" Value="public WebSocketSharp.Net.HttpListenerRequest Request { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class WebSocketSharp.Net.HttpListenerRequest Request" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>WebSocketSharp.Net.HttpListenerRequest</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the HTTP request objects sent from a client.
</summary>
<value>
A <see cref="T:WebSocketSharp.Net.HttpListenerRequest" /> that contains the HTTP request objects.
</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Response">
<MemberSignature Language="C#" Value="public WebSocketSharp.Net.HttpListenerResponse Response { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class WebSocketSharp.Net.HttpListenerResponse Response" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>WebSocketSharp.Net.HttpListenerResponse</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the HTTP response objects to send to the client in response to the client's request.
</summary>
<value>
A <see cref="T:WebSocketSharp.Net.HttpListenerResponse" /> that contains the HTTP response objects.
</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
</Members>
</Type>