コード例 #1
0
 /**
  * Reads a cookie iterator, then advances to the next cookie if any.
  *
  * @param iter          Cookie iterator Handle.
  * @param name          Name buffer.
  * @param nameLen       Name buffer size.
  * @param access        Access level of the cookie.
  * @param desc          Cookie description buffer.
  * @param descLen       Cookie description buffer size.
  * @return              True on success, false if there are no more commands.
  */
 public static bool ReadCookieIterator(Handle iter, string name, int nameLen, ref CookieAccess access, string desc = "", int descLen = 0)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
 /**
  * Creates a new Client preference cookie.
  *
  * Handles returned by RegClientCookie can be closed via CloseHandle() when
  * no longer needed.
  *
  * @param name          Name of the new preference cookie.
  * @param description   Optional description of the preference cookie.
  * @param access        What CookieAccess level to assign to this cookie.
  * @return              A handle to the newly created cookie. If the cookie already
  *                      exists, a handle to it will still be returned.
  * @error               Cookie name is blank.
  */
 public static Cookie RegClientCookie(string name, string description, CookieAccess access)
 {
     throw new NotImplementedException();
 }