File: SocketFactory.xml

package info (click to toggle)
xsp 2.10-2.4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,656 kB
  • sloc: cs: 11,307; xml: 8,481; sh: 4,378; perl: 1,189; makefile: 744; php: 6
file content (148 lines) | stat: -rw-r--r-- 6,102 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<Type Name="SocketFactory" FullName="Mono.FastCgi.SocketFactory">
  <TypeSignature Language="C#" Value="public static class SocketFactory" />
  <TypeSignature Language="ILAsm" Value=".class public auto ansi abstract sealed beforefieldinit SocketFactory extends System.Object" />
  <AssemblyInfo>
    <AssemblyName>fastcgi-mono-server2</AssemblyName>
    <AssemblyVersion>2.8.1.0</AssemblyVersion>
  </AssemblyInfo>
  <Base>
    <BaseTypeName>System.Object</BaseTypeName>
  </Base>
  <Interfaces />
  <Docs>
    <summary>
            This static class creates bound instances of <see cref="T:Mono.FastCgi.Socket" /> to use for various implementations.
            </summary>
    <remarks>To be added.</remarks>
  </Docs>
  <Members>
    <Member MemberName="CreatePipeSocket">
      <MemberSignature Language="C#" Value="public static Mono.FastCgi.Socket CreatePipeSocket (IntPtr sock);" />
      <MemberSignature Language="ILAsm" Value=".method public static hidebysig class Mono.FastCgi.Socket CreatePipeSocket(native int sock) cil managed" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.8.1.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>Mono.FastCgi.Socket</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="sock" Type="System.IntPtr" />
      </Parameters>
      <Docs>
        <param name="sock">
            A <see cref="T:System.IntPtr" /> pointing to the bound socket.
            </param>
        <summary>
            Creates a socket from a bound unmanaged socket.
            </summary>
        <returns>
            A <see cref="T:Mono.FastCgi.Socket" /> object bound to the specified
            IP address and end point.
            </returns>
        <remarks>To be added.</remarks>
        <exception cref="!:System.Net.Sockets.SocketException">
            The specified socket is not bound.
            </exception>
      </Docs>
    </Member>
    <Member MemberName="CreateTcpSocket">
      <MemberSignature Language="C#" Value="public static Mono.FastCgi.Socket CreateTcpSocket (System.Net.IPEndPoint localEndPoint);" />
      <MemberSignature Language="ILAsm" Value=".method public static hidebysig class Mono.FastCgi.Socket CreateTcpSocket(class System.Net.IPEndPoint localEndPoint) cil managed" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.8.1.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>Mono.FastCgi.Socket</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="localEndPoint" Type="System.Net.IPEndPoint" />
      </Parameters>
      <Docs>
        <param name="localEndPoint">
            A <see cref="!:System.Net.IPEndPoint" /> containing the
            local IP end point to bind to.
            </param>
        <summary>
            Creates a bound socket for a specified local IP end
            point.
            </summary>
        <returns>
            A <see cref="T:Mono.FastCgi.Socket" /> object bound to the specified
            end point.
            </returns>
        <remarks>To be added.</remarks>
        <exception cref="!:System.Net.Sockets.SocketException">
            An error occurred while binding the socket.
            </exception>
      </Docs>
    </Member>
    <Member MemberName="CreateTcpSocket">
      <MemberSignature Language="C#" Value="public static Mono.FastCgi.Socket CreateTcpSocket (System.Net.IPAddress address, int port);" />
      <MemberSignature Language="ILAsm" Value=".method public static hidebysig class Mono.FastCgi.Socket CreateTcpSocket(class System.Net.IPAddress address, int32 port) cil managed" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.8.1.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>Mono.FastCgi.Socket</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="address" Type="System.Net.IPAddress" />
        <Parameter Name="port" Type="System.Int32" />
      </Parameters>
      <Docs>
        <param name="address">
            A <see cref="!:System.Net.IPAddress" /> containing the
            IP address be assigned.
            </param>
        <param name="port">
            A <see cref="T:System.Int32" /> containing the port to bind to.
            </param>
        <summary>
            Creates a bound socket for a specified IP address and
            port.
            </summary>
        <returns>
            A <see cref="T:Mono.FastCgi.Socket" /> object bound to the specified
            IP address and end point.
            </returns>
        <remarks>To be added.</remarks>
        <exception cref="!:System.Net.Sockets.SocketException">
            An error occurred while binding the socket.
            </exception>
      </Docs>
    </Member>
    <Member MemberName="CreateUnixSocket">
      <MemberSignature Language="C#" Value="public static Mono.FastCgi.Socket CreateUnixSocket (string path);" />
      <MemberSignature Language="ILAsm" Value=".method public static hidebysig class Mono.FastCgi.Socket CreateUnixSocket(string path) cil managed" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.8.1.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>Mono.FastCgi.Socket</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="path" Type="System.String" />
      </Parameters>
      <Docs>
        <param name="path">
            A <see cref="T:System.String" /> containing the path to use.
            </param>
        <summary>
            Creates a unix socket for a specified path.
            </summary>
        <returns>
            A <see cref="T:Mono.FastCgi.Socket" /> object bound to the specified
            path.
            </returns>
        <remarks>To be added.</remarks>
        <exception cref="!:System.Net.Sockets.SocketException">
            An error occurred while binding the socket.
            </exception>
      </Docs>
    </Member>
  </Members>
</Type>