WS_NETPIPE_URL structure (webservices.h)

The URL subtype for specifying a net.pipe URL.

Syntax

typedef struct _WS_NETPIPE_URL {
  WS_URL    url;
  WS_STRING host;
  USHORT    port;
  WS_STRING portAsString;
  WS_STRING path;
  WS_STRING query;
  WS_STRING fragment;
} WS_NETPIPE_URL;

Members

url

The base type from which this URL subtype and all other URL subtypes derive. The WS_URL_SCHEME_TYPE is WS_URL_NETPIPE_SCHEME_TYPE.

host

The host name.

port

The port number.

portAsString

The port number as string.

path

The path.

query

The query.

fragment

The fragment.

Remarks

If used with the WsDecodeUrl field, portAsString is a zero-length string if no port is specified in url.

Requirements

Requirement Value
Minimum supported client Windows 8 [desktop apps only]
Minimum supported server Windows Server 2012 [desktop apps only]
Header webservices.h

See also

WS_HTTPS_URL

WS_HTTP_URL

WS_NETTCP_URL

WS_SOAPUDP_URL