ClientBase<TChannel>.ICommunicationObject.Open Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ICommunicationObject.Open() |
Causes a communication object to transition from the created state into the opened state. |
ICommunicationObject.Open(TimeSpan) |
Causes the ClientBase<TChannel> object to transition from the created state into the opened state within a specified interval of time. |
ICommunicationObject.Open()
Causes a communication object to transition from the created state into the opened state.
virtual void System.ServiceModel.ICommunicationObject.Open() = System::ServiceModel::ICommunicationObject::Open;
void ICommunicationObject.Open ();
abstract member System.ServiceModel.ICommunicationObject.Open : unit -> unit
override this.System.ServiceModel.ICommunicationObject.Open : unit -> unit
Sub Open () Implements ICommunicationObject.Open
Implements
Remarks
This member is an explicit interface member implementation. It can be used only when the ClientBase<TChannel> instance is cast to an ICommunicationObject interface.
Applies to
ICommunicationObject.Open(TimeSpan)
- Source:
- ClientBase.cs
- Source:
- ClientBase.cs
- Source:
- ClientBase.cs
Causes the ClientBase<TChannel> object to transition from the created state into the opened state within a specified interval of time.
virtual void System.ServiceModel.ICommunicationObject.Open(TimeSpan timeout) = System::ServiceModel::ICommunicationObject::Open;
void ICommunicationObject.Open (TimeSpan timeout);
abstract member System.ServiceModel.ICommunicationObject.Open : TimeSpan -> unit
override this.System.ServiceModel.ICommunicationObject.Open : TimeSpan -> unit
Sub Open (timeout As TimeSpan) Implements ICommunicationObject.Open
Parameters
- timeout
- TimeSpan
The time period within which the call must complete.
Implements
Remarks
For more information, see System.ServiceModel.Channels.CommunicationObject.