TcpServerChannel.GetChannelUri 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回当前信道的 URI。
public:
System::String ^ GetChannelUri();
public string GetChannelUri ();
member this.GetChannelUri : unit -> string
Public Function GetChannelUri () As String
返回
当前信道的 URI。
示例
下面的代码示例演示如何使用此方法。
// Display the channel's URI.
Console::WriteLine( L"The channel URI is {0}.",
channel->GetChannelUri() );
// Display the channel's URI.
Console.WriteLine("The channel URI is {0}.",
channel.GetChannelUri());