Server.UnbindAsync Method
Namespace: Rebex.Net.Servers.Core
Assembly: Rebex.FileServer.dll (version 8.0.9673)
UnbindAsync()
Unbinds all modules.
Declaration
public async Task UnbindAsync()
Returns
| Type | Description |
|---|---|
| Task | A Task that represents an asynchronous Unbind operation. |
UnbindAsync(ServerModule)
Unbinds the specified module from all endpoints.
Declaration
public async Task UnbindAsync(ServerModule module)
Parameters
| Type | Name | Description |
|---|---|---|
| ServerModule | module | Module to unbind. |
Returns
| Type | Description |
|---|---|
| Task | A Task that represents an asynchronous Unbind operation. |
UnbindAsync(IPEndPoint)
Unbinds all modules bound to the specified endpoint.
Declaration
public async Task UnbindAsync(IPEndPoint endPoint)
Parameters
| Type | Name | Description |
|---|---|---|
| IPEndPoint | endPoint | Endpoint to unbind. |
Returns
| Type | Description |
|---|---|
| Task | A Task that represents an asynchronous Unbind operation. |
UnbindAsync(IPAddress)
Unbinds all modules bound to the specified address.
Declaration
public async Task UnbindAsync(IPAddress address)
Parameters
| Type | Name | Description |
|---|---|---|
| IPAddress | address | Address to unbind. |
Returns
| Type | Description |
|---|---|
| Task | A Task that represents an asynchronous Unbind operation. |
UnbindAsync(Int32)
Unbinds all modules bound to the specified port.
Declaration
public async Task UnbindAsync(int port)
Parameters
| Type | Name | Description |
|---|---|---|
| Int32 | port | Port to unbind. |
Returns
| Type | Description |
|---|---|
| Task | A Task that represents an asynchronous Unbind operation. |