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