Channel Class |
Namespace: Grpc.Core
The Channel type exposes the following members.
Name | Description | |
---|---|---|
![]() | Channel(String, Credentials, IEnumerableChannelOption) |
Creates a channel that connects to a specific host.
Port will default to 80 for an unsecure channel and to 443 for a secure channel.
|
![]() | Channel(String, Int32, Credentials, IEnumerableChannelOption) |
Creates a channel that connects to a specific host and port.
|
Name | Description | |
---|---|---|
![]() | ResolvedTarget | Resolved address of the remote endpoint in URI format. |
![]() | State |
Gets current connectivity state of this channel.
|
![]() | Target | The original target used to create the channel. |
Name | Description | |
---|---|---|
![]() | ConnectAsync |
Allows explicitly requesting channel to connect without starting an RPC.
Returned task completes once state Ready was seen. If the deadline is reached,
or channel enters the FatalFailure state, the task is cancelled.
There is no need to call this explicitly unless your use case requires that.
Starting an RPC on a new channel will request connection implicitly.
|
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ShutdownAsync |
Waits until there are no more active calls for this channel and then cleans up
resources used by this channel.
|
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() | WaitForStateChangedAsync |
Returned tasks completes once channel state has become different from
given lastObservedState.
If deadline is reached or and error occurs, returned task is cancelled.
|