Commit 113488b7 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Version informations

parent 8ebc7def
...@@ -147,6 +147,7 @@ namespace VideoLAN.LibVLC ...@@ -147,6 +147,7 @@ namespace VideoLAN.LibVLC
/** /**
* The unmanaged VLC-internal instance object. * The unmanaged VLC-internal instance object.
* Do not use this unless you really know what you are doing. * Do not use this unless you really know what you are doing.
* @version VLC 1.0
*/ */
public SafeHandle Object public SafeHandle Object
{ {
......
...@@ -91,16 +91,17 @@ namespace VideoLAN.LibVLC ...@@ -91,16 +91,17 @@ namespace VideoLAN.LibVLC
/** /**
* Add VLC input item options to the media. * Add VLC input item options to the media.
* @param options VLC options in VLC input item format
* (see example below)
* @param trusted whether the options are set by a trusted agent
* (e.g. the local computer configuration) or not
* (e.g. a downloaded file).
* @code * @code
* Media m = new Media(vlc, "http://www.example.com/music.ogg"); * Media m = new Media(vlc, "http://www.example.com/music.ogg");
* m.AddOptions(":http-user-agent=LibVLC.Net " * m.AddOptions(":http-user-agent=LibVLC.Net "
* + ":http-proxy=proxy:8080", true); * + ":http-proxy=proxy:8080", true);
* @endcode * @endcode
* @param options VLC options in VLC input item format
* (see example below)
* @param trusted whether the options are set by a trusted agent
* (e.g. the local computer configuration) or not
* (e.g. a downloaded file).
* @version VLC 0.9.9 if trusted is false
*/ */
public void AddOptions (string options, bool trusted) public void AddOptions (string options, bool trusted)
{ {
...@@ -115,6 +116,7 @@ namespace VideoLAN.LibVLC ...@@ -115,6 +116,7 @@ namespace VideoLAN.LibVLC
/** /**
* The media location (file path, URL, ...). * The media location (file path, URL, ...).
* @version VLC 1.0
*/ */
public string Location public string Location
{ {
......
...@@ -108,6 +108,7 @@ namespace VideoLAN.LibVLC ...@@ -108,6 +108,7 @@ namespace VideoLAN.LibVLC
/** /**
* Whether the player is currently active. * Whether the player is currently active.
* @version VLC 1.0
*/ */
public bool IsPlaying public bool IsPlaying
{ {
...@@ -155,8 +156,8 @@ namespace VideoLAN.LibVLC ...@@ -155,8 +156,8 @@ namespace VideoLAN.LibVLC
* playback is not started or stopped; live reparenting might not * playback is not started or stopped; live reparenting might not
* work. * work.
* *
* <b>Warning:</b> * @warning If the identifier is invalid, Xlib might abort the process.
* If the identifier is invalid, Xlib might abort the process. * @version VLC 1.0
*/ */
public int XWindow public int XWindow
{ {
...@@ -178,6 +179,7 @@ namespace VideoLAN.LibVLC ...@@ -178,6 +179,7 @@ namespace VideoLAN.LibVLC
* supports one of DirectDraw, Direct3D, GDI or OpenGL/Win32. * supports one of DirectDraw, Direct3D, GDI or OpenGL/Win32.
* Note that you should set/change/unset the window while playback is * Note that you should set/change/unset the window while playback is
* not started or stopped; live reparenting might not work. * not started or stopped; live reparenting might not work.
* @version VLC 1.0
*/ */
public SafeHandle HWND public SafeHandle HWND
{ {
...@@ -285,6 +287,7 @@ namespace VideoLAN.LibVLC ...@@ -285,6 +287,7 @@ namespace VideoLAN.LibVLC
/** /**
* Gets the number of chapters within a given title. * Gets the number of chapters within a given title.
* @param title media title number * @param title media title number
* @version VLC 1.0
*/ */
public int GetChapterCountByTitle (int title) public int GetChapterCountByTitle (int title)
{ {
...@@ -295,6 +298,7 @@ namespace VideoLAN.LibVLC ...@@ -295,6 +298,7 @@ namespace VideoLAN.LibVLC
/** /**
* Number of the current title. * Number of the current title.
* @version VLC 1.0
*/ */
public int Title public int Title
{ {
...@@ -313,6 +317,7 @@ namespace VideoLAN.LibVLC ...@@ -313,6 +317,7 @@ namespace VideoLAN.LibVLC
/** /**
* Total number of titles. * Total number of titles.
* @version VLC 1.0
*/ */
public int TitleCount public int TitleCount
{ {
...@@ -326,6 +331,7 @@ namespace VideoLAN.LibVLC ...@@ -326,6 +331,7 @@ namespace VideoLAN.LibVLC
/** /**
* Skips to the beginning of the next chapter. * Skips to the beginning of the next chapter.
* @version VLC 1.0
*/ */
public void NextChapter () public void NextChapter ()
{ {
...@@ -335,6 +341,7 @@ namespace VideoLAN.LibVLC ...@@ -335,6 +341,7 @@ namespace VideoLAN.LibVLC
/** /**
* Rewinds to the previous chapter. * Rewinds to the previous chapter.
* @version VLC 1.0
*/ */
public void PreviousChapter () public void PreviousChapter ()
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment