HTTP_SERVICE_CONFIG_URLACL_KEY (Structures)
Last changed: markg@microsoft.com-131.107.76.143

.
Summary
The HTTP_SERVICE_CONFIG_URLACL_KEY structure is used to specify a particular reservation record in the URL namespace reservation store. It is a member of the HTTP_SERVICE_CONFIG_URLACL_SET and HTTP_SERVICE_CONFIG_URLACL_QUERY structures.

C# Definition:

[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct HTTP_SERVICE_CONFIG_URLACL_KEY
{
     [MarshalAs(UnmanagedType.LPWStr)]
     public string pUrlPrefix;

     public HTTP_SERVICE_CONFIG_URLACL_KEY(string urlPrefix)
     {
     pUrlPrefix = urlPrefix;
     }
}

VB Definition:

<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)> _
Public Structure HTTP_SERVICE_CONFIG_URLACL_KEY
    <MarshalAs(UnmanagedType.LPWStr)> _
    Public pUrlPrefix As String

    Public Sub New(ByVal urlPrefix As String)
        pUrlPrefix = urlPrefix
    End Sub
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation