Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Interfaces, prefix the name with the module name and a period.
IUri (Interfaces)
.
C# Definition:
[ComImport]
[Guid("A39EE748-6A27-4817-A6F2-13914BEF5890"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IUri
{
UInt32 GetPropertyBSTR([In]UriProperty uriProp, [Out]out string strProperty, [In]UInt32 dwFlags);
UInt32 GetPropertyLength([In]UriProperty uriProp, [Out] out UInt32 pcPropLen, [In]UInt32 dwFlags);
UInt32 GetPropertyDWORD([In]UriProperty uriProp, [Out] out UInt32 pcPropValue, [In]UInt32 dwFlags);
UInt32 HasProperty([In]UriProperty uriProp, [Out] out bool fHasProperty);
UInt32 GetAbsoluteUri([MarshalAs(UnmanagedType.BStr)][Out] out string sAbsoluteUri);
UInt32 GetAuthority([MarshalAs(UnmanagedType.BStr)][Out] out string sAuthority);
UInt32 GetDisplayUri([MarshalAs(UnmanagedType.BStr)][Out] out string sDisplayString);
UInt32 GetDomain([MarshalAs(UnmanagedType.BStr)][Out] out string sDomain);
UInt32 GetExtension([MarshalAs(UnmanagedType.BStr)][Out] out string sExtension);
UInt32 GetFragment([MarshalAs(UnmanagedType.BStr)][Out] out string sFragment);
UInt32 GetHost([MarshalAs(UnmanagedType.BStr)][Out] out string sHost);
UInt32 GetPassword([MarshalAs(UnmanagedType.BStr)][Out] out string sPassword);
UInt32 GetPath([MarshalAs(UnmanagedType.BStr)][Out] out string sPath);
UInt32 GetPathAndQuery([MarshalAs(UnmanagedType.BStr)][Out] out string sPathAndQuery);
UInt32 GetQuery([MarshalAs(UnmanagedType.BStr)][Out] out string sQuery);
UInt32 GetRawUri([MarshalAs(UnmanagedType.BStr)][Out] out string sRawUri);
UInt32 GetSchemeName([MarshalAs(UnmanagedType.BStr)][Out] out string sSchemeName);
UInt32 GetUserInfo([MarshalAs(UnmanagedType.BStr)][Out] out string sUserInfo);
UInt32 GetUserName([MarshalAs(UnmanagedType.BStr)][Out] out string sUserName);
UInt32 GetHostType([Out] uint dwHostType);
UInt32 GetPort([Out] uint dwPort);
UInt32 GetScheme([Out] uint dwScheme);
UInt32 GetZone([Out] uint dwZone);
UInt32 GetProperties([Out] uint dwFlags);
UInt32 IsEqual([In]IUri pUri,[Out] bool fEqual);
}
VB Definition:
<ComImport> _
<Guid("TODO")> _
'TODO: Insert <InterfaceType(ComInterfaceType.InterfaceIsIUnknown)> _ if this doesn't derive from IDispatch
Interface IUri
TODO
End Interface