Connection.Url Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene el identificador uniforme de recursos (URI) de la conexión actual.
public:
property Uri ^ Url { Uri ^ get(); };
public Uri Url { get; }
member this.Url : Uri
Public ReadOnly Property Url As Uri
Valor de propiedad
Objeto Uri asociado a la conexión actual.
Ejemplos
public LinkedList<string> getURL(IServiceProvider sp) {
Connection con = (Connection)sp.GetService(typeof(Connection));
LinkedList<string> llp = new LinkedList<string>();
llp.AddLast("Url.AbsolutePath : " + con.Url.AbsolutePath);
llp.AddLast("Url.AbsoluteUri : " + con.Url.AbsoluteUri);
llp.AddLast("Url.Authority : " + con.Url.Authority);
llp.AddLast("Url.DnsSafeHost : " + con.Url.DnsSafeHost);
llp.AddLast("Url.Fragment : " + con.Url.Fragment);
llp.AddLast("Url.Host : " + con.Url.Host);
llp.AddLast("Url.HostNameType : " + con.Url.HostNameType.ToString());
llp.AddLast("Url.UserInfo : " + con.Url.UserInfo);
llp.AddLast("Url.Scheme : " + con.Url.Scheme);
llp.AddLast("Url.OriginalString : " + con.Url.OriginalString);
llp.AddLast("Url.PathAndQuery : " + con.Url.PathAndQuery);
llp.AddLast("Url.Port : " + con.Url.Port.ToString());
return llp;
}