<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Infragistics4.Web.jQuery.v12.2</name>
    </assembly>
    <members>
        <member name="T:Infragistics.Web.UI.EditorControls.UploadStatus">
            <summary>
            Possible File Modes when file is Uploaded - e.g. Not Started, Started, Finished, etc.
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.UploadStatus.NotStarted">
            <summary>
            File is not started
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.UploadStatus.Started">
            <summary>
            File uploading is started
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.UploadStatus.Finished">
            <summary>
            File upload is finished
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.UploadStatus.NoSuchFile">
            <summary>
            File not found - this status is used when it is not found such key in the dictionary
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.UploadStatus.CancelledByClientCommand">
            <summary>
            Cancel file uploading by client command
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.UploadStatus.FileSizeExceeded">
            <summary>
            Size of the file exceeded
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.UploadStatus.ErrorUploading">
            <summary>
            Error while file is uploading
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.UploadStatus.CancelledByEvent">
            <summary>
            File upload is cancelled from server-side event handler
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.UploadStatus.CancelledByClientConnection">
            <summary>
            File uploading is cancelled by dropping client connection
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.UploadStatus.UploadFinishing">
            <summary>
            Status of file when the whole content is uploaded but the file is with temporary filename
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.FileError">
            <summary>
            FileError thrown while uploading - e.g. MIME type validation, inner exceptions, etc. 
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.FileError.None">
            <summary>
            No error
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.FileError.EstablishingFileName">
            <summary>
            File error occurs when getting file name from the request
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.FileError.MimeTypeValidation">
            <summary>
            MIME type validation failed
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.FileError.FileSizeExceeded">
            <summary>
            File size exceeded
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.FileError.InternalErrorUploadFolderNotFound">
            <summary>
            Temporary folder where file should be uploaded could not be found
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.FileError.InternalErrorHeaderParsing">
            <summary>
            Error while parsing request header
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.FileError.KeyFileNotFound">
            <summary>
            File does not exist with the specified key in the request
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.FileError.InternalExceptionFileSaving">
            <summary>
            Error occurs when file saving fails
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.FileError.InternalExceptionFileWriting">
            <summary>
            Error occurs when trying to write file content
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.FileError.InternalExceptionFileStarting">
            <summary>
            Error occurred when trying to write file content for the first time
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.FileError.InternalExceptionFileDeleting">
            <summary>
            Error occurred when trying to delete file
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.FileError.ServerSideCancel">
            <summary>
            Error set when fileupload is cancelled on start uploading in event handler
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.FileSaveType">
            <summary>
            How the file will be saved
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.FileSaveType.FileStream">
            <summary>
            File content will be saved in file stream
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.FileSaveType.MemoryStream">
            <summary>
            File content will be saved in memory stream
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileWriter.#ctor(System.String)">
            <summary>
            Initialize the unique identifier of the file
            </summary>
            <param name="key"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileWriter.StartFile(System.String)">
            <summary>
            Start Saving files with specified filename in the directory path (get from configuration file)
            On error save the file 
            </summary>
            <param name="fileName"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileWriter.Write(System.Byte[],System.Int32,System.Int32)">
            <summary>
            Write the specified byte array chunk
            </summary>
            <param name="array"></param>
            <param name="offset"></param>
            <param name="count"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileWriter.DeleteTemporaryFile">
            <summary>
            Delete temporary file which is used for saving
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileWriter.DeleteFile(System.String)">
            <summary>
            Delete the file
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileWriter.SaveFile">
            <summary>
            Save the file as renaming it from temporary file name to its original filename
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileWriter.Dispose">
            <summary>
            If fileStream is not disposed and is not null - free its resources
            </summary>
            
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileWriter.SetError(Infragistics.Web.UI.EditorControls.FileError)">
            <summary>
            Set for the specified file specific error
            </summary>
            <param name="error"></param>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileWriter.FileName">
            <summary>
            File name property
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileWriter.SaveTypeStream">
            <summary>
            The type of saving file - as filestrea, as memory stream, etc.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileWriter.FileStream">
            <summary>
            Get the file stream
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileWriter.DirectoryPath">
            <summary>
            Analyze and get folder path from the configuration
            First check if the folder exists and if not then set it as Server.MapPath
            Add at the of the path \
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.RequestProcessor">
            <summary>
            Class which manages processing http request - analyze header, analyzing and processing file chunks from http request
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.RequestProcessor.ProcessData(System.Byte[],System.Int32)">
            <summary>
            Process request - get header/body of the request, call fileprocessor to write file, validate by MIME type according to request header
            </summary>
            <param name="bytes">byte array which should be processed</param>
            <param name="count"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.RequestProcessor.CancelUpload">
            <summary>
            Set flag for cancelling file to be true
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.RequestProcessor.RemoveFile(System.Boolean,System.Boolean)">
            <summary>
            Delete file - usually when file upload is interrupted.  
            Usually when the browser is closed, connection is dropped, etc.        
            </summary>
            <param name="isClientDisconnected"></param>
            <param name="isToRemoveWithoutDelay"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.RequestProcessor.ValidateMIMEType(System.String)">
            <summary>
            Validate by MIME types
            </summary>
            <param name="contentType"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.RequestProcessor.SaveContent(System.Byte[],System.Int32,System.Int32,System.Boolean)">
            <summary>
            Saving the bytes from request chunk to file
            </summary>
            <param name="arr"></param>
            <param name="offset"></param>
            <param name="count"></param>
            <param name="inFile"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.RequestProcessor.ParseHeader(System.Byte[],System.Int32,System.Int32)">
            <summary>
            Analyzing and parsing header
            </summary>
            <param name="input">header in byte array</param>
            <param name="startOfHeader">start of header in byte array</param>
            <param name="endOfHeader">end of header in byte array</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.RequestProcessor.CheckArrayContainsArray(System.Byte[],System.Byte[],System.Int32)">
            <summary>
            Check if one byte array contains other byte array
            </summary>
            <param name="source"></param>
            <param name="search"></param>
            <param name="startIndex"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.RequestProcessor.LastIndexOf(System.Byte[],System.Byte[])">
            <summary>
            Finds the first occurance of the byte array
            </summary>
            <param name="source"></param>
            <param name="search"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.RequestProcessor.LastIndexOf(System.Byte[],System.Byte[],System.Int32)">
            <summary>
            Finds the last index of byte array
            </summary>
            <param name="source"></param>
            <param name="search"></param>
            <param name="startSearch"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.RequestProcessor.FirstIndexOf(System.Byte[],System.Byte[])">
            <summary>
            Finds the first index of byte array
            </summary>
            <param name="source"></param>
            <param name="search"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.RequestProcessor.FirstIndexOf(System.Byte[],System.Byte[],System.Int32)">
            <summary>
            Finds the first index of byte array
            </summary>
            <param name="source"></param>
            <param name="search"></param>
            <param name="srcOffset"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.RequestProcessor.System#IDisposable#Dispose">
            <summary>
            Dispose file stream
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.RequestProcessor.IsError">
            <summary>
            Set/get flag for error - e.g. set when validating MIME type
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.RequestProcessor.IsCancelUpload">
            <summary>
            Flag for canceling file upload
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.RequestProcessor.IsFinished">
            <summary>
            Get status is finished of the file
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.SafeDictionary`2">
            <summary>
            Thread safe dictionary
            </summary>
            <typeparam name="TKey"></typeparam>
            <typeparam name="TValue"></typeparam>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.SafeDictionary`2.Add(`0,`1)">
            <summary>
            Adds the specified key and value to the dictionary
            </summary>
            <param name="key"></param>
            <param name="value"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.SafeDictionary`2.CheckAndAdd(`0,`1)">
            <summary>
            Check if the key exists in the dictionary, if not adds the value
            </summary>
            <param name="key"></param>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.SafeDictionary`2.CheckAndAdd(System.Collections.Generic.KeyValuePair{`0,`1})">
            <summary>
            Check if the key exists in dictionary, if not adds the value
            </summary>
            <param name="keyValuePair"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.SafeDictionary`2.ContainsKey(`0)">
            <summary>
            Check if the dictionary contains the specified key
            </summary>
            <param name="key"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.SafeDictionary`2.Remove(`0)">
            <summary>
            Removes from the dictionary item with the specified key
            </summary>
            <param name="key"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.SafeDictionary`2.TryGetValue(`0,`1@)">
            <summary>
            Gets the value with the specified key
            </summary>
            <param name="key"></param>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.SafeDictionary`2.Add(System.Collections.Generic.KeyValuePair{`0,`1})">
            <summary>
            Adds the item to collection
            </summary>
            <param name="item"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.SafeDictionary`2.Clear">
            <summary>
            Removes all keys and values from the dictionary
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.SafeDictionary`2.Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
            <summary>
            Check whether the dictionary contains the specific item
            </summary>
            <param name="item"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.SafeDictionary`2.CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
            <summary>
            Copies the dictionary KeyCollection
            elements to an existing one-dimensional System.Array, starting at the specified array index.
            </summary>
            <param name="array"></param>
            <param name="arrayIndex"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.SafeDictionary`2.Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
            <summary>
            Removes the value with the specified key from the dictionary.
            </summary>
            <param name="item"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.SafeDictionary`2.GetEnumerator">
            <summary>
            Returns an enumerator that iterates through the collection.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.SafeDictionary`2.System#Collections#IEnumerable#GetEnumerator">
            <summary>
            Returns an enumerator that iterates through a collection.
            </summary>
            <returns>An System.Collections.IEnumerator object that can be used to iterate through the collection</returns>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.SafeDictionary`2.Keys">
            <summary>
            Returns the collection of keys
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.SafeDictionary`2.Values">
            <summary>
            Gets the collection containing the values
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.SafeDictionary`2.Item(`0)">
            <summary>
            Gets or sets the value associated with the specified key.
            </summary>
            <param name="key"></param>
            <returns></returns>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.SafeDictionary`2.Count">
            <summary>
            Gets the number of key/value pairs in the dictionary
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.SafeDictionary`2.IsReadOnly">
            <summary>
            Returns whether the dictionary is read only
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.UploadBaseEventArgs">
            <summary>
            Represents Base Class for EventArgs
            All non cancellable EventArgs classes should extend it
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.UploadBaseEventArgs._fileInfo">
            <summary>
            UploadInfo object
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadBaseEventArgs.#ctor(Infragistics.Web.UI.EditorControls.UploadInfo)">
            <summary>
            Initialize internal UploadingInfo
            </summary>
            <param name="fi"></param>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadBaseEventArgs.FileSize">
            <summary>
            Get file size
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadBaseEventArgs.FileStatus">
            <summary>
            Get file status of the uploading file
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadBaseEventArgs.FileName">
            <summary>
            Get file name of the uploading file
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadBaseEventArgs.FolderPath">
            <summary>
            Get folder path where the file is uploading
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadBaseEventArgs.FileError">
            <summary>
            Get file error - by default it is None
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadBaseEventArgs.MimeType">
            <summary>
            Get MIME type of the uploading file
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.UploadCancellableBaseEventArgs">
            <summary>
            Base class for file upload cancellable event arguments
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.UploadCancellableBaseEventArgs._fileInfo">
            <summary>
            File upload info object
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.UploadCancellableBaseEventArgs._baseEventArgs">
            <summary>
            File upload Base Event Arguments object
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.UploadCancellableBaseEventArgs._serverMessage">
            <summary>
            Server Message
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadCancellableBaseEventArgs.#ctor(Infragistics.Web.UI.EditorControls.UploadInfo)">
            <summary>
            Setting UploadInfo and initialize baseEventArgs
            </summary>
            <param name="fi"></param>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadCancellableBaseEventArgs.FileSize">
            <summary>
            Returns size of the uploading file
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadCancellableBaseEventArgs.FileStatus">
            <summary>
            Returns status of the uploading file
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadCancellableBaseEventArgs.FileName">
            <summary>
            Returns name of the uploading file
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadCancellableBaseEventArgs.FolderPath">
            <summary>
            Returns folder path of the uploading file where the file is saved
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadCancellableBaseEventArgs.MimeType">
            <summary>
            Get MIME Type of the uploading file 
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadCancellableBaseEventArgs.ServerMessage">
            <summary>
            Set or get server message which is sent to client-side.
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.UploadFinishedEventArgs">
            <summary>
            EventArguments class initialized when file is finished
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadFinishedEventArgs.#ctor(Infragistics.Web.UI.EditorControls.UploadInfo)">
            <summary>
            Initialized UploadInfo of the uploaded file
            </summary>
            <param name="fi"></param>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadFinishedEventArgs.IsServerSideCancelled">
            <summary>
            Get whether upload is canceled by server side event - e.g. UploadStarting, UploadFinishing
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.UploadFinishingEventArgs">
            <summary>
            EventArguments class initialized when the whole request of the file is processed and it should be saved from temporary file to original file
            Cancellable event argument
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadFinishingEventArgs.#ctor(Infragistics.Web.UI.EditorControls.UploadInfo)">
            <summary>
            Initialize UploadingInfo
            </summary>
            <param name="fi"></param>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadFinishingEventArgs.TemporaryFileName">
            <summary>
            Returns temporary file name 
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.UploadInfo">
            <summary>
            Represents file which is uploading - its file size, uploaded bytes, filename, etc.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadInfo.#ctor(System.String,System.Int64,System.Int64,System.String)">
            <summary>
            Initialize file upload info
            </summary>
            <param name="fileName"></param>
            <param name="fileSize"></param>
            <param name="uploadedBytes"></param>
            <param name="controlId"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadInfo.SetRequestProcessor(Infragistics.Web.UI.EditorControls.RequestProcessor)">
            <summary>
            Set inner request processor of the file
            </summary>
            <param name="rp"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadInfo.CancelUpload">
            <summary>
            Cancel upload - set status of the file to cancel and calls request processor to cancel upload
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadInfo.ControlId">
            <summary>
            Get Unique Identifier of the control
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadInfo.ServerMessage">
            <summary>
            server message which is sent to the client. It it on cancel
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadInfo.MimeType">
            <summary>
            Get MIME type of the uploading file
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadInfo.IsServerSideCancelled">
            <summary>
            Check if file upload is cancelled by server side
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadInfo.TemporaryFileName">
            <summary>
            Get temporary file name - when file is uploading it is saved with temporary file name
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadInfo.FolderPath">
            <summary>
            Get folder path where the file is saved while uploading
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadInfo.UploadedBytes">
            <summary>
            Get currently uploaded bytes
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadInfo.FileStatus">
            <summary>
            Get file status of the uploading file
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadInfo.FileName">
            <summary>
            Get file name of the uploading file
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadInfo.Error">
            <summary>
            Get file error status
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadInfo.FileSize">
            <summary>
            Get total file size in bytes of the uploading file
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.UploadModule">
            <summary>
            Module which process Http Request and manages files uploading
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadModule.Init(System.Web.HttpApplication)">
            <summary>
            Initialize File Upload Module attach to Begin Request, EndRequest event
            </summary>
            <param name="context"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadModule.OnEndRequest(System.Object,System.EventArgs)">
            <summary>
            Saving status for requests larger than maxAllowedContentLength(in web.config)
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadModule.OnBeginRequest(System.Object,System.EventArgs)">
            <summary>
            Event handler for begin request - processing request and make it in chunks according to size of the requests
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadModule.SetFileSizeExceeded(System.String,System.Int64,System.String)">
            <summary>
            Set status of the file to FileSizeExceeded
            </summary>
            <param name="key"></param>
            <param name="fileSize"></param>
            <param name="controlId"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadModule.IsGetFileSize(System.String)">
            <summary>
            Check if the request is for getting file size
            </summary>
            <param name="qs"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadModule.GetWorkerRequest(System.Web.HttpContext)">
            <summary>
            Gets the Http worker request
            </summary>
            <param name="context">http context.</param>
            <returns>Worker request</returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadModule.Dispose">
            <summary>
            Dispose Resources by file upload module
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.UploadProgressManager">
            <summary> 
            Singleton class
            Proxy class which is used as instance in HTTPModule and HttpHandler - get commands from httphandler and send it to module
            Get information for each of the file from HTTPModule and send it to httphandler
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.UploadNewFile(System.String,System.String,System.String,System.Int64,System.Int64,System.String,System.String,System.String,Infragistics.Web.UI.EditorControls.RequestProcessor)">
            <summary>
            Start uploading new file
            </summary>
            <param name="fileName"></param>
            <param name="tmpFileName"></param>
            <param name="folderPath"></param>
            <param name="fileSize"></param>
            <param name="currentlyUploadedBytes"></param>
            <param name="key"></param>
            <param name="controlId"></param>
            <param name="mimeType"></param>
            <param name="rp"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.SetError(Infragistics.Web.UI.EditorControls.FileError,System.String)">
            <summary>
            Set internal error - for instance could not write file or could not process request
            </summary>
            <param name="error"></param>
            <param name="key"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.SetFinishingFile(Infragistics.Web.UI.EditorControls.UploadInfo)">
            <summary>
            Called when file is finished as set file status to finished
            </summary>
            <param name="upf"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.GetUploadedFileByKey(System.String)">
            <summary>
            Get file uploading info from dictionary
            </summary>
            <param name="key"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.RemoveUploadInfo(System.String,System.Boolean,System.Boolean)">
            <summary>
            Remove file from dictionary
            Fire event for finishing file
            </summary>
            <param name="key"></param>
            <param name="IsCancelledByClient"></param>
            <param name="isToRemoveWithoutDelay"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.RemoveFileFromDictionaryWithDelay(System.Timers.Timer,System.String)">
            <summary>
            Remove upload info from dictionary with delay
            </summary>
            <param name="timer">delay timer which will be disposed after upload info is removed</param>
            <param name="key">key of the  upload info</param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.AddDictFiles(System.String,Infragistics.Web.UI.EditorControls.UploadInfo)">
            <summary>
            Add uploadInfo to dictionary 
            </summary>
            <param name="fileKey">key of the file</param>
            <param name="uploadInfo">upload information object</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.DeleteDictFile(System.String)">
            <summary>
            Delete upload info from with dictionary with the specified key
            </summary>
            <param name="key"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.AddDictFileSizes(System.String,System.Int64)">
            <summary>
            Add to filesize dictionary size of the file with the specified key
            </summary>
            <param name="fileKey">key of the file</param>
            <param name="fileSize">size of the file</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.DeleteDictFileSizes(System.String)">
            <summary>
            Delete from file size dictionary filesize of the file with the specified key
            </summary>
            <param name="key"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.CommandGetStatus(System.String)">
            <summary>
            Get status for the file - filestatus, uploaded bytes - in json format
            </summary>
            <param name="key"></param>
            <returns>string in json format: status, bytesUploaded, total filesize, error</returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.CommandGetFileSize(System.String)">
            <summary>
            Get file size and deletes from filesize dictionary element with specific key
            </summary>
            <param name="key"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.CancelUpload(System.String)">
            <summary>
            Cancel upload 
            </summary>
            <param name="key"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.AddFileSize(System.String,System.Int64)">
            <summary>
            Add file size to the dectionary and after specified delay will remove it from the collection
            </summary>
            <param name="key">key of the file</param>
            <param name="fileSize">size of the file</param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.SetFileSizeExceeded(System.String,System.String,System.Int64,System.String)">
            <summary>
            Create upload info in collection and sets its status to filesize exceeded
            </summary>
            <param name="key"></param>
            <param name="fileName"></param>
            <param name="fileSize"></param>
            <param name="controlId"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.GetFileSize(System.String)">
            <summary>
            Get file size instance with specified key and remove it from file size collection
            </summary>
            <param name="key"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.RemoveUnusedFileSizeInstances(System.Timers.Timer,System.String)">
            <summary>
            Remove from file size dictionary file with specified key
            </summary>
            <param name="timer"></param>
            <param name="key"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.AddStartingUploadEventHandler(System.String,System.EventHandler{Infragistics.Web.UI.EditorControls.UploadStartingEventArgs})">
            <summary>
            Add Starting Upload event handler in dictionary
            </summary>
            <param name="controlId"></param>
            <param name="eventHandler"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.RemoveStartingUploadEventHandler(System.String,System.EventHandler{Infragistics.Web.UI.EditorControls.UploadStartingEventArgs})">
            <summary>
            Remove starting upload event handler from dictionary
            </summary>
            <param name="controlId"></param>
            <param name="eventHandler"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.GetStartingUploadEventHandler(System.String)">
            <summary>
            Get starting upload event handler by unique control identifier
            </summary>
            <param name="controlId"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.AddFinishingUploadEventHandler(System.String,System.EventHandler{Infragistics.Web.UI.EditorControls.UploadFinishingEventArgs})">
            <summary>
            Add finishing upload event handler in dictionary
            </summary>
            <param name="controlId"></param>
            <param name="eventHandler"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.RemoveFinishingUploadEventHandler(System.String,System.EventHandler{Infragistics.Web.UI.EditorControls.UploadFinishingEventArgs})">
            <summary>
            Remove finishing upload event handler from dictionary
            </summary>
            <param name="controlId"></param>
            <param name="eventHandler"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.GetFinishingUploadEventHandler(System.String)">
            <summary>
            Get finishing upload event handler by unique control identifier
            </summary>
            <param name="controlId"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.AddFinishedUploadEventHandler(System.String,System.EventHandler{Infragistics.Web.UI.EditorControls.UploadFinishedEventArgs})">
            <summary>
            Add finished upload event handler in dictionary
            </summary>
            <param name="controlId"></param>
            <param name="eventHandler"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.RemoveFinishedUploadEventHandler(System.String,System.EventHandler{Infragistics.Web.UI.EditorControls.UploadFinishedEventArgs})">
            <summary>
            Remove finished upload event handler from dictionary
            </summary>
            <param name="controlId"></param>
            <param name="eventHandler"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.GetFinishedUploadEventHandler(System.String)">
            <summary>
            Get finished upload event handler from dictionary by unique control identifier
            </summary>
            <param name="controlId"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.TrackError(System.String,System.Object[])">
            <summary>
            Track error 
            </summary>
            <param name="error"></param>
            <param name="args"></param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadProgressManager.TrackError(System.String,System.Exception)">
            <summary>
            Track Error from exception
            </summary>
            <param name="error"></param>
            <param name="ex"></param>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadProgressManager.Instance">
            <summary>
            Property which gets the instance of the singleton class
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.UploadSettings.Commands">
            <summary>
            Commands processed by HTTPHandler
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.UploadStartingEventArgs">
            <summary>
            Class for file upload starting event arguments
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadStartingEventArgs.#ctor(Infragistics.Web.UI.EditorControls.UploadInfo)">
            <summary>
            Initialize file upload starting events with file uploading information
            </summary>
            <param name="fi"></param>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadStartingEventArgs.TemporaryFileName">
            <summary>
            Get temporary file name
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.UploadStatusHandler">
            <summary>
            Handler which process the client commands for file upload
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.UploadStatusHandler.ProcessRequest(System.Web.HttpContext)">
            <summary>
            Get from request command and file key and calls uploadprogressmanager according to command
            </summary>
            <param name="context"></param>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.UploadStatusHandler.IsReusable">
            <summary>
            Another request can not use the IHttpHandler instance.
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.UltraLicenseAttributeBase">
            <summary>
            The abstract base class for our license attribues
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.UltraLicenseAttributeBase.#ctor(System.String)">
            <summary>
            Constructor
            </summary>
            <param name="componentName">The name of the component that will be displayed in the about dialog.</param>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraLicenseAttributeBase.ComponentName">
            <summary>
            Returns the display name of the component (read-only)
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraLicenseAttributeBase.LicensedWithProducts">
            <summary>
            Returns an array of UltraProductInfoBase objects.
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.ClientSideEventArgumentsAttribute">
            <summary>
            ClientSideEventArgumentsAttribute class is used to provide a standart way
            of passing event arguments for client side event handlers.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientSideEventArgumentsAttribute.#ctor(System.String[])">
            <summary>
            Default constructor.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.ClientSideEventArgumentsAttribute.Arguments">
            <summary>
            Gets the event data 
            </summary>
            /// <value type="String"></value>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.SwitchToDesignViewAttribute">
            <summary>
            SwitchToDesignViewAttribute class is used to determine
            whether automatically switching to Design View is allowed.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.SwitchToDesignViewAttribute.#ctor(System.Boolean)">
            <summary>
            Default constructor.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.SwitchToDesignViewAttribute.IsAllowed">
            <summary>
            Gets a value indicating whether automatically switching to Design View is allowed.
            </summary>
            <value type="Boolean"></value>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.IUltraLicensedComponent">
            <summary>
            Interface implemented by Infragistics licensed componenents
            and controls.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.IUltraLicensedComponent.License">
            <summary>
            Returns the component's license object (read-only) 
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.UltraLicense">
            <summary>
            The license object for Infragistics components and controls
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.UltraLicense.Dispose">
            <summary>
            Disposes the object
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraLicense.ProductInfo">
            <summary>
            Returns the product info object
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraLicense.ComponentName">
            <summary>
            Returns the display name of the component (read-only)
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraLicense.LicenseKey">
            <summary>
            returns the license key (read-only)
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.UltraLicenseProvider">
            <summary>
            Base class for licensing
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.UltraLicenseProvider.GetLicense(System.ComponentModel.LicenseContext,System.Type,System.Object,System.Boolean)">
            <summary>
            Overriden to return a beta license object
            </summary>
            <returns>The BetaLicense object</returns>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.LicenseStatus">
            <summary>
            An enumerator that describes the status of the license
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.LicenseStatus.Unchecked">
            <summary>
            The license verification logic hasn't run yet
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.LicenseStatus.UnableToLocateLicenseAssembly">
            <summary>
            The license file could not be located.
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.LicenseStatus.InsufficientSecurityPermissions">
            <summary>
            Unable to determine license status due to security permission restrictions.
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.LicenseStatus.RegKeyNotFound">
            <summary>
            Couldn't find the necessary registry keys
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.LicenseStatus.CDKeyInvalid">
            <summary>
            Found an invalid CDkey
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.LicenseStatus.BetaExpired">
            <summary>
            The beta period has expired
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.LicenseStatus.BetaValid">
            <summary>
            The beta period has not expired
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.LicenseStatus.TrialExpired">
            <summary>
            The trial period has expired
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.LicenseStatus.ActivationGracePeriodExpired">
            <summary>
            The activation grace period has expired.
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.LicenseStatus.CDKeyValid">
            <summary>
            A valid CDKey was found
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.LicenseStatus.TrialValid">
            <summary>
            The trial period has not expired
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.LicenseStatus.ActivationGracePeriodValid">
            <summary>
            The activation grace period has not expired.
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.LicenseStatus.Licensed">
            <summary>
            The component is fully licensed
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.ProductType">
            <summary>
            An enumeration that describes the product type.
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.ProductType.WinFormsComponent">
            <summary>
            The product is a WinForms component.
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.ProductType.WebFormsComponent">
            <summary>
            The product is a WebForms component.
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.UltraProductInfoBase">
            <summary>
            Abstract base class that holds product info.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.UltraProductInfoBase.GetKeyText">
            <summary>
            Returns resolved Key text
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.UltraProductInfoBase.IsKeyValid(System.String)">
            <summary>
            Checks the validaity of the key
            </summary>
            <returns>True if the key is valid</returns>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraProductInfoBase.Expiration">
            <summary>
            Returns the expiration description.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraProductInfoBase.RequiresActivation">
            <summary>
            Returns the expiration date.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraProductInfoBase.ProductName">
            <summary>
            Returns the product name
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraProductInfoBase.Expired">
            <summary>
            Returns true if the license has expired (read-only)
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraProductInfoBase.Status">
            <summary>
            Returns the statuc of the license
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraProductInfoBase.Key">
            <summary>
            Returns the Key 
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraProductInfoBase.CompanyName">
            <summary>
            Returns the company name
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraProductInfoBase.UserName">
            <summary>
            Returns the user name
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraProductInfoBase.Type">
            <summary>
            Returns the product type
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.BetaProductInfo">
            <summary>
            ProductInfo used when a product is in beta.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.BetaProductInfo.#ctor(System.String,System.DateTime)">
            <summary>
            Constructor
            </summary>
            <param name="productName">The product name to display in the about dialog</param>
            <param name="expirationDate">The expiration date of the beta.</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.BetaProductInfo.#ctor(System.String,System.DateTime,Infragistics.Web.UI.Framework.ProductType)">
            <summary>
            Constructor
            </summary>
            <param name="productName">The product name to display in the about dialog</param>
            <param name="expirationDate">The expiration date of the beta.</param>
            <param name="productType">The productType of the product</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.BetaProductInfo.IsKeyValid(System.String)">
            <summary>
            Checks the validity of the key
            </summary>
            <returns>True if the key is valid</returns>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.BetaProductInfo.Expiration">
            <summary>
            Returns the expiration description.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.BetaProductInfo.RequiresActivation">
            <summary>
            Returns the expiration date.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.BetaProductInfo.Status">
            <summary>
            Returns the statuc of the license
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.BetaProductInfo.Key">
            <summary>
            Returns the Key 
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.BetaProductInfo.CompanyName">
            <summary>
            Returns the company name
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.BetaProductInfo.UserName">
            <summary>
            Returns the user name
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.BetaProductInfo.Expired">
            <summary>
            Returns true if the license has expired (read-only)
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.UltraProductInfo">
            <summary>
            ProductInfo used when after a product has been released.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.UltraProductInfo.#ctor(System.String,System.String,System.String,System.Guid,System.Boolean,System.Byte,System.Byte)">
            <summary>
            Contructor
            </summary>
            <param name="productName">The product name for the about dialog</param>
            <param name="regKeyProductName">The reg key root product name</param>
            <param name="codePrefix">must be 4 characters long</param>
            <param name="id">the id</param>
            <param name="requiresActivation">True if activation is required.</param>
            <param name="majorVersion">Major version of the product.</param>
            <param name="minorVersion">Minor version of the product.</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.UltraProductInfo.#ctor(System.String,System.String,System.String,System.Guid,System.Boolean,Infragistics.Web.UI.Framework.ProductType,System.Byte,System.Byte)">
            <summary>
            Contructor
            </summary>
            <param name="productName">The product name for the about dialog</param>
            <param name="regKeyProductName">The reg key root product name</param>
            <param name="codePrefix">must be 4 characters long</param>
            <param name="id">the id</param>
            <param name="requiresActivation">True if activation is required.</param>
            <param name="productType">The type of product</param>
            <param name="majorVersion">Major version of the product.</param>
            <param name="minorVersion">Minor version of the product.</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.UltraProductInfo.IsKeyValid(System.String)">
            <summary>
            Checks the validity of the key
            </summary>
            <returns>True if the key is valid</returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.UltraProductInfo.GetKeyText">
            <summary>
            Returns the string used to represent the product key in a UI, taking into account localized values.
            </summary>
            <returns>A string used to represent the product key.</returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.UltraProductInfo.GetExpirationDate(System.Int32)">
            <summary>
            Returns the expiration date based on the number of usage days remaining.
            </summary>
            <param name="usageDaysRemaining">Number of usage days remaining.</param>
            <returns>Expiration date for the product.</returns>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraProductInfo.Expiration">
            <summary>
            Returns the expiration description.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraProductInfo.RequiresActivation">
            <summary>
            Returns the expiration date.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraProductInfo.Status">
            <summary>
            Returns the statuc of the license
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraProductInfo.Key">
            <summary>
            Returns the Key 
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraProductInfo.CompanyName">
            <summary>
            Returns the company name
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraProductInfo.UserName">
            <summary>
            Returns the user name
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UltraProductInfo.Expired">
            <summary>
            Returns true if the license has expired (read-only)
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.UnlicensedProductInfo">
            <summary>
            ProductInfo used for non-licensed products.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.UnlicensedProductInfo.#ctor(System.String)">
            <summary>
            Constructor
            </summary>
            <param name="productName">The product name to display in the about dialog</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.UnlicensedProductInfo.#ctor(System.String,Infragistics.Web.UI.Framework.ProductType)">
            <summary>
            Constructor
            </summary>
            <param name="productName">The product name to display in the about dialog</param>
            <param name="productType">The type of product.</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.UnlicensedProductInfo.IsKeyValid(System.String)">
            <summary>
            Checks the validity of the key
            </summary>
            <returns>True if the key is valid</returns>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UnlicensedProductInfo.Expiration">
            <summary>
            Returns the expiration.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UnlicensedProductInfo.RequiresActivation">
            <summary>
            Returns the expiration date.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UnlicensedProductInfo.Status">
            <summary>
            Returns the statuc of the license
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UnlicensedProductInfo.Key">
            <summary>
            Returns the Key 
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UnlicensedProductInfo.CompanyName">
            <summary>
            Returns the company name
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UnlicensedProductInfo.UserName">
            <summary>
            Returns the user name
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.UnlicensedProductInfo.Expired">
            <summary>
            Returns true if the license has expired (read-only)
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.SR.GetString(System.String)">
            <summary>
            Returns the resource string using the specified name and default culture.
            </summary>
            <param name="name">Name of the string resource to return.</param>
            <returns>Null if the name is null; otherwise a string from the resource for the default culture.</returns>
        </member>
        <member name="M:Infragistics.Web.UI.SR.GetString(System.String,System.Object[])">
            <summary>
            Returns the resource string using the specified resource name and default culture. The string is then formatted using the arguments specified.
            </summary>
            <param name="name">Name of the string resource to return.</param>
            <param name="args">Arguments supplied to the string.Format method when formatting the string.</param>
            <returns>Null if the name is null; otherwise a formatted string using the resource specified.</returns>
        </member>
        <member name="M:Infragistics.Web.UI.SR.GetString(System.Globalization.CultureInfo,System.String)">
            <summary>
            Returns the resource string using the culture and name specified.
            </summary>
            <param name="culture">Culture whose resource should loaded. The resource will go through a fallback process to locate the appropriate resources.</param>
            <param name="name">Name of the string resource to return.</param>
            <returns>Null if the name is null; otherwise a localized string for specified culture.</returns>
        </member>
        <member name="M:Infragistics.Web.UI.SR.GetString(System.Globalization.CultureInfo,System.String,System.Object[])">
            <summary>
            Returns the resource string using the name and culture specified. The string is then formatted using the arguments specified.
            </summary>
            <param name="culture">Culture whose resource should loaded. The resource will go through a fallback process to locate the appropriate resources.</param>
            <param name="name">Name of the string resource to return.</param>
            <param name="args">Arguments supplied to the string.Format method when formatting the string.</param>
            <returns>Null if the name is null; otherwise a formatted string using the resource specified.</returns>
        </member>
        <member name="M:Infragistics.Web.UI.LocalizedCategoryAttribute.GetLocalizedString(System.String)">
            <summary>
            Returns the localized category name.
            </summary>
            <param name="value">Name of the category to retreive.</param>
            <returns>The localized string value.</returns>
        </member>
        <member name="T:Infragistics.Web.UI.DisplayControls.VideoPlayerBannerCollection">
            <summary>
            A collection of VideoPlayerBanner objects
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.ClientObjectCollection">
            <summary>
            Abstract collection that all collections for client control wrappers should derive from
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.IJQueryOption">
            <summary>
            An interface that objects that will be output as a jQuery option should implement
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.IJQueryOption.ToOption">
            <summary>
            Returns the object as a string parameter for the options
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectCollection.#ctor">
            <summary>
            Creates a new ClientObjectCollection
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectCollection.#ctor(System.Int32)">
            <summary>
            Creates a new ClientObjectCollection
            </summary>
            <param name="capacity">The initial capacity of the inner list</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectCollection.#ctor(Infragistics.Web.UI.Framework.ClientControlMain)">
            <summary>
            Creates a new ClientObjectCollection
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectCollection.Add(Infragistics.Web.UI.Framework.ClientObjectBase)">
            <summary>
            Add a new item to the collection.
            </summary>
            <param name="item">ClientObjectBase object</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectCollection.Insert(System.Int32,Infragistics.Web.UI.Framework.ClientObjectBase)">
            <summary>
            Add a new item to the collection.
            </summary>
            <param name="item">ClientObjectBase object</param>
            <param name="index">The index to insert the item at</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectCollection.Clear">
            <summary>
            Clear the collection items.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectCollection.Contains(Infragistics.Web.UI.Framework.ClientObjectBase)">
            <summary>
            Check whether the collection contains concrete
            ClientObjectBase object
            </summary>
            <param name="item"></param>
            <returns>Returns true if the object is contained, false otherwise.</returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectCollection.IndexOf(Infragistics.Web.UI.Framework.ClientObjectBase)">
            <summary>
            Returns the index of the item in the collection, or -1 if it is not present
            </summary>
            <param name="item">The item to find</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectCollection.CopyTo(Infragistics.Web.UI.Framework.ClientObjectBase[],System.Int32)">
            <summary>
            Copy the contents of the collection to an
            array of ClientObjectBase objects.
            </summary>
            <param name="array"></param>
            <param name="arrayIndex"></param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectCollection.Remove(Infragistics.Web.UI.Framework.ClientObjectBase)">
            <summary>
            Remove an item from the collection.
            </summary>
            <param name="item">ClientObjectBase object</param>
            <returns>Returns true if the item is successfully removed, false otherwise</returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectCollection.RemoveAt(System.Int32)">
            <summary>
            Remove an item from the collection.
            </summary>
            <param name="index">The index of the object to remove</param>
            <returns>Returns true if the item is successfully removed, false otherwise</returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectCollection.GetEnumerator">
            <summary>
            Return an enumerator
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectCollection.CopyTo(System.Array,System.Int32)">
            <summary>
            Copies the objects of this collection into the given array
            </summary>
            <param name="array"></param>
            <param name="index"></param>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.ClientObjectCollection.Count">
            <summary>
            Get the number of items in the collection
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.ClientObjectCollection.IsEmpty">
            <summary>
            Returns true if the collection is empty.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.ClientObjectCollection.IsReadOnly">
            <summary>
            Get whether the collection is ReadOnly
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.ClientObjectCollection.Owner">
            <summary>
            Returns the owner item that contains the collection.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.ClientObjectCollection.List">
            <summary>
            Returns the list of objects
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.ClientObjectCollection.IsSynchronized">
            <summary>
            Returns whether the collection is synchornized
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.ClientObjectCollection.SyncRoot">
            <summary>
            Get the synchronization object if the collection is synchronized.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.ClientObjectCollection.Item(System.Int32)">
            <summary>
            Gets/sets the ClientObjectBase at the given index
            </summary>
            <param name="index"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBannerCollection.#ctor">
            <summary>
            Creates a new VideoPlayerBannerCollection
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBannerCollection.#ctor(Infragistics.Web.UI.DisplayControls.WebVideoPlayer)">
            <summary>
            Creates a new VideoPlayerBannerCollection
            </summary>
            <param name="owner">The WebVideoPlayer this collection belongs to</param>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBannerCollection.Add(Infragistics.Web.UI.DisplayControls.VideoPlayerBanner)">
            <summary>
            Appends the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner">VideoPlayerBanner</see> to the collection.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBannerCollection.IndexOf(Infragistics.Web.UI.DisplayControls.VideoPlayerBanner)">
            <summary>
            Returns the index of the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner">VideoPlayerBanner</see> in the collection.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBannerCollection.Insert(System.Int32,Infragistics.Web.UI.DisplayControls.VideoPlayerBanner)">
            <summary>
            Inserts the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner">VideoPlayerBanner</see> to the underlying collection ArrayList
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBannerCollection.Contains(Infragistics.Web.UI.DisplayControls.VideoPlayerBanner)">
            <summary>
            Returns true if the collection contains the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner">VideoPlayerBanner</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBannerCollection.Remove(Infragistics.Web.UI.DisplayControls.VideoPlayerBanner)">
            <summary>
            Removes the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner">VideoPlayerBanner</see> from the collection.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBannerCollection.Item(System.Int32)">
            <summary>
            Gets the collection of Items in the control.
            </summary>
            <param name="index">The zero based index of the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner">VideoPlayerBanner</see> to retrieve from the collection.</param>
            <returns></returns>
        </member>
        <member name="T:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource">
            <summary>
            A class representing an ad that plays during the main video as a commercial.
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.ClientObjectBase">
            <summary>
            A class for complex objects used for properties in JQuery controls
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.#ctor">
            <summary>
            Default constructor for ClientObjectBase
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.#ctor(System.Boolean)">
            <summary>
            Constructor for ClientObjectBase with additional parameter to tell to track view state
            </summary>
            <param name="trackViewState">Whether to start tracking view state</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.LoadViewState(System.Object)">
            <summary>
            Load data modified at run time.
            </summary>
            <param name="savedState">Modified data</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.System#Web#UI#IStateManager#LoadViewState(System.Object)">
            <summary>
            Load data modified at run time.
            </summary>
            <param name="savedState">Modified data</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.SaveViewState">
            <summary>
            Save data modified at run time.
            </summary>
            <returns>Modified data</returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.System#Web#UI#IStateManager#SaveViewState">
            <summary>
            Save data modified at run time.
            </summary>
            <returns>Modified data</returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.TrackViewState">
            <summary>
            Enables view state tracking for sub-objects
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.HasValue(System.String)">
            <summary>
            Checks if specific property value is present in ViewState based on the string id.
            </summary>
            <param name="id">The Id of the property.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.GetValue(System.String,System.Object)">
            <summary>
            Obtains a generic object property value from ViewState based on the string id defined as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.GetValue(System.String,System.String)">
            <summary>
            Obtains a string property value from ViewState based on the string id define as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default string property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.GetValue(System.String,System.Int32)">
            <summary>
            Obtains an integer property value from ViewState based on the string id defined as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default integer property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.GetValue(System.String,System.Double)">
            <summary>
            Obtains a Double property value from ViewState based on the string id define as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default double property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.GetValue(System.String,System.Boolean)">
            <summary>
            Obtains a boolean property value from ViewState based on the string id defined as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default boolean property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.GetValue(System.String,System.DateTime)">
            <summary>
            Obtains a DateTime property value from ViewState based on the string id defined as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default DateTime property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.GetValue(System.String,System.TimeSpan)">
            <summary>
            Obtains a TimeSpan property value from ViewState based on the string id defined as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default TimeSpan property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.GetValue(System.String,System.Drawing.Color)">
            <summary>
            Obtains a property value from ViewState based on the string id defined as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default Color property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.GetValue(System.String,System.Guid)">
            <summary>
            Obtains a property value from ViewState based on the string id defined as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default Guid property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.GetValue(System.String,System.Web.UI.WebControls.Unit)">
            <summary>
            Obtains a property value from ViewState based on the string id defined as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default Unit property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.SetValue(System.String,System.Object)">
            <summary>
            Sets an object value so that it is maintained in viewstate
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="value">The value of the property to be stored into ViewState.</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.SetValue(System.String,System.Object,System.Object)">
            <summary>
            Sets an object value so that it is maintained in viewstate
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="value">The value of the property to be stored into ViewState.</param>
            <param name="defaultValue">The default value of the property.</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.OnPropertyChange(System.String,System.Object)">
            <summary>
            Virtual method that is called whenever a server state property within the object has been changed.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="value">The new value for the property that has changed.</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.OnPropertyChange(System.Int32,System.Object)">
            <summary>
            Virtual method that is called whenever a client state property within the object has been changed.
            </summary>
            <param name="index">The Id of the property (defined as a constant in the derived class).</param>
            <param name="value">The new value for the property that has changed.</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.ToOption">
            <summary>
            Need to override, otherwise returns an empty string
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientObjectBase.Infragistics#Web#UI#Framework#IJQueryOption#ToOption">
            <summary>
            Need to override, otherwise returns an empty string
            </summary>
            <returns></returns>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.ClientObjectBase.ViewState">
            <summary>
            Returns a StateBag for the ViewState
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.ClientObjectBase.HasViewState">
            <summary>
            Returns true if ViewState has been initialized
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.ClientObjectBase.IsEmpty">
            <summary>
            Checks if ViewState has any property with not a default value.
            This property should be overriden by extended class when additional
            subobjects are supported.  IsEmpty will then check each subobject and return 
            a value based on the check of those objects plus itself.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource.ToOption">
            <summary>
            Returns this object as option for jquery init
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource.ToString">
            <summary>
            Returns whether the object has non-default values.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource.LoadViewState(System.Object)">
            <summary>
            Load data modified at run time.
            </summary>
            <param name="savedState">Modified data</param>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource.SaveViewState">
            <summary>
            Save data modified at run time.
            </summary>
            <returns>Modified data</returns>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource.TrackViewState">
            <summary>
            Enables view state tracking for sub-objects
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource.StartTime">
            <summary>
            Get or set the second in the movie at which the commercial should play.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource.Title">
            <summary>
            Get or set a tooltip for the bookmark.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource.Link">
            <summary>
            Get or set the link to open on commercial click.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource.Sources">
            <summary>
            Get or set the sources of the commercial video.
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSourceCollection">
            <summary>
            A collection of VideoPlayerLinkedSource objects
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSourceCollection.#ctor">
            <summary>
            Creates a new VideoPlayerLinkedSourceCollection
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSourceCollection.#ctor(Infragistics.Web.UI.DisplayControls.WebVideoPlayer)">
            <summary>
            Creates a new VideoPlayerLinkedSourceCollection
            </summary>
            <param name="owner">The WebVideoPlayer this collection belongs to</param>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSourceCollection.Add(Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource)">
            <summary>
            Appends the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource">VideoPlayerLinkedSource</see> to the collection.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSourceCollection.IndexOf(Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource)">
            <summary>
            Returns the index of the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource">VideoPlayerLinkedSource</see> in the collection.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSourceCollection.Insert(System.Int32,Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource)">
            <summary>
            Inserts the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource">VideoPlayerLinkedSource</see> to the underlying collection ArrayList
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSourceCollection.Contains(Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource)">
            <summary>
            Returns true if the collection contains the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource">VideoPlayerLinkedSource</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSourceCollection.Remove(Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource)">
            <summary>
            Removes the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource">VideoPlayerLinkedSource</see> from the collection.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSourceCollection.Item(System.Int32)">
            <summary>
            Gets the collection of Items in the control.
            </summary>
            <param name="index">The zero based index of the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerLinkedSource">VideoPlayerLinkedSource</see> to retrieve from the collection.</param>
            <returns></returns>
        </member>
        <member name="T:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner">
            <summary>
            A class holding the options for a banner that will appear while video is playing
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner.ToOption">
            <summary>
            Returns this object as option for jquery init
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner.ToString">
            <summary>
            Returns whether the object has non-default values.
            </summary>
            <returns></returns>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner.ImageUrl">
            <summary>
            Get or set the banner image url.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner.Times">
            <summary>
            Get or set a list of numbers delimitted by '|'. Each number specifies on which second in the movie the banner will pop.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner.CloseBanner">
            <summary>
            Get or set whether the user will be able to close the banner or not.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner.Animate">
            <summary>
            Get or set whether to animate the banner display.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner.Visible">
            <summary>
            Get or set whether the banner is visible or not.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner.Autohide">
            <summary>
            Get or set whether auto hide is enabled or not.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner.Duration">
            <summary>
            Get or set the animation duration in ms.  Default is 1000.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner.HideDelay">
            <summary>
            Get or set what is the auto hide delay in ms.  Default is 10,000 ms.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner.Link">
            <summary>
            Get or set the banner link that will open in new window.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner.Css">
            <summary>
            Get or set the banner specific css class
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner.Width">
            <summary>
            Get or set the banner width
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBanner.Height">
            <summary>
            Get or set the banner height
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark">
            <summary>
            A class representing a bookmark in the video stream
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark.ToOption">
            <summary>
            Returns this object as option for jquery init
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark.ToString">
            <summary>
            Returns whether the object has non-default values.
            </summary>
            <returns></returns>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark.Time">
            <summary>
            Get or set where the bookmark will be positioned. Should be between 0 and movie duration in seconds.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark.Title">
            <summary>
            Get or set bookmark title. It is shown as tooltip on hover.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark.Disabled">
            <summary>
            Get or set whether the bookmark is disabled or not. 
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmarkCollection">
            <summary>
            A collection of VideoPlayerBookmark objects
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmarkCollection.#ctor">
            <summary>
            Creates a new VideoPlayerBookmarkCollection
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmarkCollection.#ctor(Infragistics.Web.UI.DisplayControls.WebVideoPlayer)">
            <summary>
            Creates a new VideoPlayerBookmarkCollection
            </summary>
            <param name="owner">The WebVideoPlayer this collection belongs to</param>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmarkCollection.Add(Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark)">
            <summary>
            Appends the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark">VideoPlayerBookmark</see> to the collection.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmarkCollection.IndexOf(Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark)">
            <summary>
            Returns the index of the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark">VideoPlayerBookmark</see> in the collection.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmarkCollection.Insert(System.Int32,Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark)">
            <summary>
            Inserts the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark">VideoPlayerBookmark</see> to the underlying collection ArrayList
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmarkCollection.Contains(Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark)">
            <summary>
            Returns true if the collection contains the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark">VideoPlayerBookmark</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmarkCollection.Remove(Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark)">
            <summary>
            Removes the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark">VideoPlayerBookmark</see> from the collection.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmarkCollection.Item(System.Int32)">
            <summary>
            Gets the collection of Items in the control.
            </summary>
            <param name="index">The zero based index of the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerBookmark">VideoPlayerBookmark</see> to retrieve from the collection.</param>
            <returns></returns>
        </member>
        <member name="T:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents">
            <summary>
            ClientEvents used by the <see cref="T:Infragistics.Web.UI.DisplayControls.WebVideoPlayer">WebVideoPlayer</see> class
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.ClientControlClientEventsBase">
            <summary>
            Base class for ClientSideEvents properties exposed by controls.
            This object handles the persistence and rendering of client events on behalf of a control.  This object also enables the
            developer to determine if a client event will cause a postback to the server when fired.
            The GetClientEventNameList method is called by the base class to allow derived classes to add their client events to the list which
            will be processed at render time.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlClientEventsBase.#ctor(Infragistics.Web.UI.Framework.ClientControlMain,System.Boolean)">
            <summary>
            Create WebObjectBase with required value of isTrackingViewState
            </summary>
            <param name="owner">Reference to owner control (optional)</param>
            <param name="trackViewState"></param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlClientEventsBase.AddNames(System.String[])">
            <summary>
            Add additional properties the base ClientEvents.
            </summary>
            <param name="propNames">Names of properties which will be appended to the base list. They should start with the base.NumberOfProperties.</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlClientEventsBase.GetClientEventNameList">
            <summary>
            Get list of property names which should be used on client.
            </summary>
            Items in that list should match with ids used to get/set properties.
            That method can be overriden only if control modifies/hides properties of base class.
            Note: that method is called multiple time on any get/set property value.
            <returns>Array of names of all properties.</returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlClientEventsBase.GetProperty(System.Int32)">
            <summary>
            Get value of a property.
            </summary>
            <param name="id">Id of property. That is a constant defined by control which is used as index of property within array returned by GetClientEventNameList().</param>
            <returns>Value of property.</returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlClientEventsBase.SetProperty(System.Int32,System.String)">
            <summary>
            Set value of a property with validation for illegal characters.
            </summary>
            <param name="id">Id of property. That is a constant defined by control which is used as index of property within array returned by GetClientEventNameList().</param>
            <param name="value">New value for a property</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlClientEventsBase.ToString">
            <summary>String formatted for visual designer.</summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlClientEventsBase.ToOption">
            <summary>
            Returns a string of concatenated events to be put into the widget options.
            </summary>
            <returns></returns>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.ClientControlClientEventsBase.IsEmpty">
            <summary>
            Checks if all properties have default values.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents.#ctor(Infragistics.Web.UI.DisplayControls.WebVideoPlayer,System.Boolean)">
            <summary>
            Create WebObjectBase with required value of isTrackingViewState
            </summary>
            <param name="owner">Reference to owner control (optional)</param>
            <param name="trackViewState"></param>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents.Ended">
            <summary>
            Gets sets name of javascript function which is called when video has ended.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents.Playing">
            <summary>
            Gets sets name of javascript function which is called when video is playing.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents.Paused">
            <summary>
            Gets sets name of javascript function which is called when video has paused.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents.Buffering">
            <summary>
            Gets sets name of javascript function which is called when video has buffered a chunk of data.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents.Progress">
            <summary>
            Gets sets name of javascript function which is called when video has advanced the playback position.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents.Waiting">
            <summary>
            Gets sets name of javascript function which is called when video tag is waiting for data from the server.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents.BookmarkHit">
            <summary>
            Gets sets name of javascript function which is called when video playback position passed a bookmark during progress.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents.BookmarkClick">
            <summary>
            Gets sets name of javascript function which is called when a bookmark is clicked.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents.EnterFullScreen">
            <summary>
            Gets sets name of javascript function which is called when control is going into full screen mode.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents.ExitFullScreen">
            <summary>
            Gets sets name of javascript function which is called when control is exiting full screen mode.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents.RelatedVideoClick">
            <summary>
            Gets sets name of javascript function which is called when a related video is clicked.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents.BannerVisible">
            <summary>
            Gets sets name of javascript function which is called when the banner has been displayed.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents.BannerHidden">
            <summary>
            Gets sets name of javascript function which is called when the banner has been hidden.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents.BannerClick">
            <summary>
            Gets sets name of javascript function which is called when the banner is clicked.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents.BrowserNotSupported">
            <summary>
            Gets sets name of javascript function which is called when the player browser not supported event. Fired when the control is displayed on a non HTML5 compliant browser.
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.DisplayControls.VideoPlayerCommercials">
            <summary>
            A class representing the options for the showing of commercials
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerCommercials.#ctor">
            <summary>
            Default constructor
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerCommercials.ToOption">
            <summary>
            Returns this object as option for jquery init
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerCommercials.ToString">
            <summary>
            Returns whether the object has non-default values.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerCommercials.SaveViewState">
            <summary>
            Save data modified at run time.
            </summary>
            <returns>Modified data</returns>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerCommercials.LoadViewState(System.Object)">
            <summary>
            Load data modified at run time.
            </summary>
            <param name="savedState">Modified data</param>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerCommercials.TrackViewState">
            <summary>
            Enables view state tracking for sub-objects
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerCommercials.LinkedCommercials">
            <summary>
            Returns a collection of VideoPlayerAdSource objects that will define commercials that play during the video.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerCommercials.EmbeddedCommercials">
            <summary>
            Returns a collection of VideoPlayerEmbeddedCommercial objects that mark start value and end value for a commercial range. The values are in seconds.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerCommercials.AlwaysPlayCommercials">
            <summary>
            Get or set whether the commercials will always play or not.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerCommercials.ShowBookmarks">
            <summary>
            Get or set whether to show commercial locations or not.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerCommercials.AdMessageAnimate">
            <summary>
            Get or set whether to animate the showing of the ad message.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerCommercials.AdMessageAutoHide">
            <summary>
            Get or set whether the ad message will auto hide.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerCommercials.AdMessageHideDelay">
            <summary>
            Get or set the ad message hide delay.
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial">
            <summary>
            A class representing a commercial embedded in the video
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial.ToOption">
            <summary>
            Returns this object as option for jquery init
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial.ToString">
            <summary>
            Returns whether the object has non-default values.
            </summary>
            <returns></returns>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial.StartTime">
            <summary>
            Get or set the start second of the commercial.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial.EndTime">
            <summary>
            Get or set the end second of the commercial.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial.Title">
            <summary>
            Get or set a tooltip for the bookmark.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial.Link">
            <summary>
            Get or set the commercial sponsored link.
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercialCollection">
            <summary>
            A collection of VideoPlayerEmbeddedCommercial objects
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercialCollection.#ctor">
            <summary>
            Creates a new VideoPlayerEmbeddedCommercialCollection
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercialCollection.#ctor(Infragistics.Web.UI.DisplayControls.WebVideoPlayer)">
            <summary>
            Creates a new VideoPlayerEmbeddedCommercialCollection
            </summary>
            <param name="owner">The WebVideoPlayer this collection belongs to</param>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercialCollection.Add(Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial)">
            <summary>
            Appends the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial">VideoPlayerEmbeddedCommercial</see> to the collection.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercialCollection.IndexOf(Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial)">
            <summary>
            Returns the index of the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial">VideoPlayerEmbeddedCommercial</see> in the collection.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercialCollection.Insert(System.Int32,Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial)">
            <summary>
            Inserts the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial">VideoPlayerEmbeddedCommercial</see> to the underlying collection ArrayList
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercialCollection.Contains(Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial)">
            <summary>
            Returns true if the collection contains the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial">VideoPlayerEmbeddedCommercial</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercialCollection.Remove(Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial)">
            <summary>
            Removes the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial">VideoPlayerEmbeddedCommercial</see> from the collection.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercialCollection.Item(System.Int32)">
            <summary>
            Gets the collection of Items in the control.
            </summary>
            <param name="index">The zero based index of the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerEmbeddedCommercial">VideoPlayerEmbeddedCommercial</see> to retrieve from the collection.</param>
            <returns></returns>
        </member>
        <member name="T:Infragistics.Web.UI.DisplayControls.VideoPlayerProgressLabelCurrentFormat">
            <summary>
            Enumeration for which format to use for progress label display
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.DisplayControls.VideoPlayerProgressLabelCurrentFormat.Long">
            <summary>
            Use long format for progress display label
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.DisplayControls.VideoPlayerProgressLabelCurrentFormat.Short">
            <summary>
            Use short format for progress display label
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo">
            <summary>
            A class holding settings for a related video
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo.ToOption">
            <summary>
            Returns this object as option for jquery init
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo.LoadViewState(System.Object)">
            <summary>
            Load data modified at run time.
            </summary>
            <param name="savedState">Modified data</param>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo.SaveViewState">
            <summary>
            Save data modified at run time.
            </summary>
            <returns>Modified data</returns>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo.TrackViewState">
            <summary>
            Enables view state tracking for sub-objects
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo.ImageUrl">
            <summary>
            Get or set the image url of the related video.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo.Title">
            <summary>
            Get or set the title of the video.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo.Width">
            <summary>
            Get or set the width of the image showing the related video.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo.Height">
            <summary>
            Get or set the height of the image showing the related video.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo.Css">
            <summary>
            Get or set custom CSS class to be applied on the related video element.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo.Sources">
            <summary>
            Get or set the sources of the related video.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo.Link">
            <summary>
            Get or set a link to a page that will play the related video. It will be opened in a new window. If there are sources also, the link property has a priority.
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideoCollection">
            <summary>
            A collection of VideoPlayerRelatedVideo objects
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideoCollection.#ctor">
            <summary>
            Creates a new VideoPlayerRelatedVideoCollection
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideoCollection.#ctor(Infragistics.Web.UI.DisplayControls.WebVideoPlayer)">
            <summary>
            Creates a new VideoPlayerRelatedVideoCollection
            </summary>
            <param name="owner">The WebVideoPlayer this collection belongs to</param>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideoCollection.Add(Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo)">
            <summary>
            Appends the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo">VideoPlayerRelatedVideo</see> to the collection.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideoCollection.IndexOf(Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo)">
            <summary>
            Returns the index of the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo">VideoPlayerRelatedVideo</see> in the collection.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideoCollection.Insert(System.Int32,Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo)">
            <summary>
            Inserts the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo">VideoPlayerRelatedVideo</see> to the underlying collection ArrayList
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideoCollection.Contains(Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo)">
            <summary>
            Returns true if the collection contains the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo">VideoPlayerRelatedVideo</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideoCollection.Remove(Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo)">
            <summary>
            Removes the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo">VideoPlayerRelatedVideo</see> from the collection.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideoCollection.Item(System.Int32)">
            <summary>
            Gets the collection of Items in the control.
            </summary>
            <param name="index">The zero based index of the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerRelatedVideo">VideoPlayerRelatedVideo</see> to retrieve from the collection.</param>
            <returns></returns>
        </member>
        <member name="T:Infragistics.Web.UI.DisplayControls.VideoPlayerSource">
            <summary>
            A class holding one source for a VideoPlayer
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerSource.ToOption">
            <summary>
            Returns this object as option for jquery init
            </summary>
            <returns></returns>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerSource.Source">
            <summary>
            Get or set the source string for the video
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.DisplayControls.VideoPlayerSourceCollection">
            <summary>
            A collection of VideoPlayerSource
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerSourceCollection.#ctor">
            <summary>
            Creates a new VideoPlayerSourceCollection
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerSourceCollection.#ctor(Infragistics.Web.UI.DisplayControls.WebVideoPlayer)">
            <summary>
            Creates a new VideoPlayerSourceCollection
            </summary>
            <param name="owner">The WebVideoPlayer this collection belongs to</param>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerSourceCollection.Add(Infragistics.Web.UI.DisplayControls.VideoPlayerSource)">
            <summary>
            Appends the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerSource">VideoPlayerSource</see> to the collection.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerSourceCollection.IndexOf(Infragistics.Web.UI.DisplayControls.VideoPlayerSource)">
            <summary>
            Returns the index of the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerSource">VideoPlayerSource</see> in the collection.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerSourceCollection.Insert(System.Int32,Infragistics.Web.UI.DisplayControls.VideoPlayerSource)">
            <summary>
            Inserts the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerSource">VideoPlayerSource</see> to the underlying collection ArrayList
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerSourceCollection.Contains(Infragistics.Web.UI.DisplayControls.VideoPlayerSource)">
            <summary>
            Returns true if the collection contains the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerSource">VideoPlayerSource</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.VideoPlayerSourceCollection.Remove(Infragistics.Web.UI.DisplayControls.VideoPlayerSource)">
            <summary>
            Removes the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerSource">VideoPlayerSource</see> from the collection.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.VideoPlayerSourceCollection.Item(System.Int32)">
            <summary>
            Gets the collection of Items in the control.
            </summary>
            <param name="index">The zero based index of the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerSource">VideoPlayerSource</see> to retrieve from the collection.</param>
            <returns></returns>
        </member>
        <member name="T:Infragistics.Web.UI.DisplayControls.WebVideoPlayer">
            <summary>
            Main class for the WebVideoPlayer control.
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.ClientControlMain">
            <summary>
            A class encapsulating most of the common logic for creating a JQuery Control on the server
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.#ctor">
            <summary>
            Default constructor
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.Render(System.Web.UI.HtmlTextWriter)">
            <summary>
            Renders the control to the specified HTML writer.
            </summary>
            <param name="writer">The System.Web.UI.HtmlTextWriter object that receives the control content.</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.OnLoad(System.EventArgs)">
            <summary>
            Handles OnLoad to register the startup script to convert the div into the JQuery control
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.OnPreRender(System.EventArgs)">
            <summary>
            Process OnPreRender
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.OnInit(System.EventArgs)">
            <summary>
            Process OnInit
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.SaveViewState">
            <summary>
            Save data modified at run time.
            </summary>
            <returns>Modified data</returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.LoadViewState(System.Object)">
            <summary>
            Load data modified at run time.
            </summary>
            <param name="savedState">Modified data</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.TrackViewState">
            <summary>
            Enables view state tracking of sub-objects
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.RenderHtml(System.Web.UI.HtmlTextWriter)">
            <summary>
            This renders a div place holder for the JQuery control
            </summary>
            <param name="writer">The html writer</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.LoadingScript">
            <summary>
            Returns a string containing a JavaScript function to convert the rendered html into the given widget
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.WriteOptions">
            <summary>
            Returns a string containing the options.  In ClientControlMain, it will return a string 
            representing a JavaScript object (minus the {}) for all properties that have the OptionAttribute
            on them.  If the OptionAttribute has an optionName, it uses that.  Otherwise it uses the 
            property name with the first letter made lowercase.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.toJQueryOptionName(System.String)">
            <summary>
            Returns the name of the asp.net PropertyName (words start with caps) with the first letter made
            lowercase (as JQuery options are).
            </summary>
            <param name="propertyName">Name of the Asp property</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.BindEvents">
            <summary>
            If there are any client events, this will bind them
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.RenderDesignHtml(System.Web.UI.HtmlTextWriter)">
            <summary>
            This renders html for design time
            </summary>
            <param name="writer">The html writer</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.GetCssFiles(System.Collections.Generic.List{System.String})">
            <summary>
            Addes css files specific to the control to the list
            </summary>
            <param name="cssFiles">List of shared css files</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.HasValue(System.String)">
            <summary>
            Checks if specific property value is present in ViewState based on the string id.
            </summary>
            <param name="id">The Id of the property.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.GetValue(System.String,System.Object)">
            <summary>
            Obtains a generic object property value from ViewState based on the string id defined as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.GetValue(System.String,System.String)">
            <summary>
            Obtains a string property value from ViewState based on the string id define as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default string property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.GetValue(System.String,System.Int32)">
            <summary>
            Obtains an integer property value from ViewState based on the string id defined as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default integer property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.GetValue(System.String,System.Double)">
            <summary>
            Obtains a Double property value from ViewState based on the string id define as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default double property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.GetValue(System.String,System.Boolean)">
            <summary>
            Obtains a boolean property value from ViewState based on the string id defined as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default boolean property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.GetValue(System.String,System.DateTime)">
            <summary>
            Obtains a DateTime property value from ViewState based on the string id defined as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default DateTime property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.GetValue(System.String,System.TimeSpan)">
            <summary>
            Obtains a TimeSpan property value from ViewState based on the string id defined as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default TimeSpan property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.GetValue(System.String,System.Drawing.Color)">
            <summary>
            Obtains a property value from ViewState based on the string id defined as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default Color property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.GetValue(System.String,System.Guid)">
            <summary>
            Obtains a property value from ViewState based on the string id defined as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default Guid property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.GetValue(System.String,System.Web.UI.WebControls.Unit)">
            <summary>
            Obtains a property value from ViewState based on the string id defined as a constant in the derived class.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="def">The default Unit property value if none has been set.</param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.SetValue(System.String,System.Object)">
            <summary>
            Sets an object value so that it is maintained in viewstate
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="value">The value of the property to be stored into ViewState.</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.SetValue(System.String,System.Object,System.Object)">
            <summary>
            Sets an object value so that it is maintained in viewstate
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="value">The value of the property to be stored into ViewState.</param>
            <param name="defaultValue">The default value of the property.</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.OnPropertyChange(System.String,System.Object)">
            <summary>
            Virtual method that is called whenever a server state property within the object has been changed.
            </summary>
            <param name="id">The Id of the property (defined as a constant in the derived class).</param>
            <param name="value">The new value for the property that has changed.</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.OnPropertyChange(System.Int32,System.Object)">
            <summary>
            Virtual method that is called whenever a client state property within the object has been changed.
            </summary>
            <param name="index">The Id of the property (defined as a constant in the derived class).</param>
            <param name="value">The new value for the property that has changed.</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.CreateClientEvents">
            <summary>
            Control which exposes ClientEvents must override that method and return instance of ClientEvents object.
            </summary>
            <returns>Instance of object which extends ClientEventsBase</returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.GetClientEventsObject">
            <summary>
            Control which exposes ClientEvents should return that method within its ClientEvents property with a proper typecast.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.ShouldSerializeClientEvents">
            <summary>
            Check if ClientEvents has data.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientControlMain.ResetClientEvents">
            <summary>Clears the ClientEvents</summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.ClientControlMain.WidgetName">
            <summary>
            Returns the name of the widget
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.ClientControlMain.DesignTimeImgSrc">
            <summary>
            Returns the url of the image to be displayed at design time in lieu of rendering
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.ClientControlMain.DesignMode">
            <summary>
            Returns true if in design time
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.CreateClientEvents">
            <summary>
            Control which exposes ClientEvents must override that method and return instance of ClientEvents object.
            </summary>
            <returns>A new instance of the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents">VideoPlayerClientEvents</see>. object.</returns>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.WriteOptions">
            <summary>
            Returns a string containing the options.  In ClientControlMain, it will return a string 
            representing a JavaScript object (minus the {}) for all properties that have the OptionAttribute
            on them.  If the OptionAttribute has an optionName, it uses that.  Otherwise it uses the 
            property name with the first letter made lowercase.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.SaveViewState">
            <summary>
            Save data modified at run time.
            </summary>
            <returns>Modified data</returns>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.LoadViewState(System.Object)">
            <summary>
            Load data modified at run time.
            </summary>
            <param name="savedState">Modified data</param>
        </member>
        <member name="M:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.TrackViewState">
            <summary>
            Enables view state tracking of sub-objects
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.Height">
            <summary>
            Height of the component.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.Width">
            <summary>
            Width of the component
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.PosterUrl">
            <summary>
            Get or set a URL to an image to show, when no video data is available.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.Preload">
            <summary>
            Get or set whether to preload load inital data for duration of video. If true it may 
            start buffering the video, but this highly depends on the specific browser implementation.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.AutoPlay">
            <summary>
            Get or set whether the video should start playing immediately after the control is loaded.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.AutoHide">
            <summary>
            Get or set whether player controls will auto hide when video is not hovered. This is applicable only 
            when Infragistics playback controls are used.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.Loop">
            <summary>
            Get or set whether the video to start again after it has ended.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.FullScreen">
            <summary>
            Get or set whether the video player to be in full screen or not. This is not a pure full screen, 
            because browsers do not allow that. It just sets 100% width and height to the control.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.BrowserControls">
            <summary>
            Get or set whether if you want to use the built in browser controls. By default player 
            uses Infragistics playback controls. Note that you may have different look and feel 
            accross different browsers if you use the built in browser controls.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.Muted">
            <summary>
            Get or set the whether video volume is muted. 
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.Volume">
            <summary>
            Get or set the video volume. It can be between 0.0 and 1.0.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.ShowSeekTime">
            <summary>
            Get or set whether the control seek tool tip will be shown when hovering the vide progress bar.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.Title">
            <summary>
            Get or set video title.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.VolumeAutohideDelay">
            <summary>
            Get or set volume slider auto hide delay. This is applicable only when Infragistics playback controls are used.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.Sources">
            <summary>
            Get or set a list of video sources to choose from. Best coded/format is automatically 
            detected by this control. Supported types are depending on the browser and could be one 
            of the following mov, mp4, webm, ogv.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.ProgressLabelFormat">
            <summary>
            Get or set the format of the video progress label. You should use ${currentTime} to represent current playback position and ${duration} to represent video duration.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.Bookmarks">
            <summary>
            Returns a collection of VideoPlayerBookmark objects that will be displayed in the video player control.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.Banners">
            <summary>
            Object to customize banner support.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.Commercials">
            <summary>
            Object used to customize commercials support.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.RelatedVideos">
            <summary>
            Returns a collection of VideoPlayerRelatedVideo objects that will be displayed when video playback has ended.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.ClientEvents">
            <summary>
            Get reference to the <see cref="T:Infragistics.Web.UI.DisplayControls.VideoPlayerClientEvents">VideoPlayerClientEvents</see>.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.WidgetName">
            <summary>
            Returns the name of the widget
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.DisplayControls.WebVideoPlayer.DesignTimeImgSrc">
            <summary>
            Returns the url of the image to be displayed at design time in lieu of rendering
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.FileUploadMode">
            <summary>
            An enumeration for how many files to upload
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.FileUploadMode.Single">
            <summary>
            Will upload a single file
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.FileUploadMode.Multiple">
            <summary>
            Allows uploading of several files
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.SizeMetric">
            <summary>
            Enumeration for how file size will be displayed
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.SizeMetric.Bytes">
            <summary>
            Display size in bytes
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.SizeMetric.KBytes">
            <summary>
            Display size in kilobytes
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.SizeMetric.MBytes">
            <summary>
            Display size in megabytes
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.SizeMetric.GBytes">
            <summary>
            Display size in gigabytes
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.EditorControls.SizeMetric.Auto">
            <summary>
            Display size according to how large the file is
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.FileUploadClientEvents">
            <summary>
            ClientEvents used by the <see cref="T:Infragistics.Web.UI.EditorControls.WebUpload">WebUpload</see> class
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadClientEvents.#ctor(Infragistics.Web.UI.EditorControls.WebUpload,System.Boolean)">
            <summary>
            Create WebObjectBase with required value of isTrackingViewState
            </summary>
            <param name="owner">Reference to owner control (optional)</param>
            <param name="trackViewState"></param>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileUploadClientEvents.FileSelecting">
            <summary>
            Gets sets name of javascript function which is called before selecting a file to upload.  Fired when browse button is pressed.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileUploadClientEvents.FileSelected">
            <summary>
            Gets sets name of javascript function which is called after file to upload has been selected.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileUploadClientEvents.FileUploading">
            <summary>
            Gets sets name of javascript function which is called before file starts to upload.  Fired everytime when file uploader get status for the upload.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileUploadClientEvents.FileUploaded">
            <summary>
            Gets sets name of javascript function which is called after a file has been uploaded.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileUploadClientEvents.FileUploadAborted">
            <summary>
            Gets sets name of javascript function which is called after a file upload has been cancelled.  Fired when the server response that the file is cancelled.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileUploadClientEvents.CancelAllClicked">
            <summary>
            Gets sets name of javascript function which is called after the cancel all button has been clicked.
            Only in multiple upload mode.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileUploadClientEvents.OnError">
            <summary>
            Gets sets name of javascript function which is called after error has been occurred.
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.FileUploadExtension">
            <summary>
            A class representing an extension string
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtension.ToOption">
            <summary>
            Returns this object as option for jquery init
            </summary>
            <returns></returns>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileUploadExtension.Extension">
            <summary>
            Gets/sets the extension string (minus the '.') for this object
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.FileUploadExtensionCollection">
            <summary>
            Holds a collection of FileUploadExtension objects
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionCollection.#ctor">
            <summary>
            Creates a new FileUploadExtensionCollection
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionCollection.#ctor(Infragistics.Web.UI.EditorControls.WebUpload)">
            <summary>
            Creates a new FileUploadExtensionCollection
            </summary>
            <param name="owner">The WebUpload this collection belongs to</param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionCollection.Add(Infragistics.Web.UI.EditorControls.FileUploadExtension)">
            <summary>
            Appends the <see cref="T:Infragistics.Web.UI.EditorControls.FileUploadExtension">FileUploadExtension</see> to the collection.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionCollection.IndexOf(Infragistics.Web.UI.EditorControls.FileUploadExtension)">
            <summary>
            Returns the index of the <see cref="T:Infragistics.Web.UI.EditorControls.FileUploadExtension">FileUploadExtension</see> in the collection.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionCollection.Insert(System.Int32,Infragistics.Web.UI.EditorControls.FileUploadExtension)">
            <summary>
            Inserts the <see cref="T:Infragistics.Web.UI.EditorControls.FileUploadExtension">FileUploadExtension</see> to the underlying collection ArrayList
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionCollection.Contains(Infragistics.Web.UI.EditorControls.FileUploadExtension)">
            <summary>
            Returns true if the collection contains the <see cref="T:Infragistics.Web.UI.EditorControls.FileUploadExtension">FileUploadExtension</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionCollection.Remove(Infragistics.Web.UI.EditorControls.FileUploadExtension)">
            <summary>
            Removes the <see cref="T:Infragistics.Web.UI.EditorControls.FileUploadExtension">FileUploadExtension</see> from the collection.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileUploadExtensionCollection.Item(System.Int32)">
            <summary>
            Gets the collection of Items in the control.
            </summary>
            <param name="index">The zero based index of the <see cref="T:Infragistics.Web.UI.EditorControls.FileUploadExtension">FileUploadExtension</see> to retrieve from the collection.</param>
            <returns></returns>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon">
            <summary>
            A class representing an icon's css class for given extensions
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon.#ctor">
            <summary>
            Default constructor
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon.ToOption">
            <summary>
            Returns this object as option for jquery init
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon.LoadViewState(System.Object)">
            <summary>
            Load data modified at run time.
            </summary>
            <param name="savedState">Modified data</param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon.SaveViewState">
            <summary>
            Save data modified at run time.
            </summary>
            <returns>Modified data</returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon.TrackViewState">
            <summary>
            Enables view state tracking for sub-objects
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon.Extensions">
            <summary>
            A list of extension strings to use this css class for the icon.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon.CSS">
            <summary>
            Gets/sets the css class applied to the extensions that match those in this object's Extensions collection
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon.Default">
            <summary>
            Gets/sets whether this is default extension icon
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.FileUploadExtensionIconCollection">
            <summary>
            Holds a collection of FileUploadExtensionIcon objects
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionIconCollection.#ctor">
            <summary>
            Creates a new FileUploadExtensionIconCollection
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionIconCollection.#ctor(Infragistics.Web.UI.EditorControls.WebUpload)">
            <summary>
            Creates a new FileUploadExtensionIconCollection
            </summary>
            <param name="owner">The WebUpload this collection belongs to</param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionIconCollection.Add(Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon)">
            <summary>
            Appends the <see cref="T:Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon">FileUploadExtensionIcon</see> to the collection.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionIconCollection.IndexOf(Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon)">
            <summary>
            Returns the index of the <see cref="T:Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon">FileUploadExtensionIcon</see> in the collection.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionIconCollection.Insert(System.Int32,Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon)">
            <summary>
            Inserts the <see cref="T:Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon">FileUploadExtensionIcon</see> to the underlying collection ArrayList
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionIconCollection.Contains(Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon)">
            <summary>
            Returns true if the collection contains the <see cref="T:Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon">FileUploadExtensionIcon</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.FileUploadExtensionIconCollection.Remove(Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon)">
            <summary>
            Removes the <see cref="T:Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon">FileUploadExtensionIcon</see> from the collection.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.FileUploadExtensionIconCollection.Item(System.Int32)">
            <summary>
            Gets the collection of Items in the control.
            </summary>
            <param name="index">The zero based index of the <see cref="T:Infragistics.Web.UI.EditorControls.FileUploadExtensionIcon">FileUploadExtensionIcon</see> to retrieve from the collection.</param>
            <returns></returns>
        </member>
        <member name="T:Infragistics.Web.UI.EditorControls.WebUpload">
            <summary>
            Main class for the WebUpload control.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.WebUpload.CreateClientEvents">
            <summary>
            Control which exposes ClientEvents must override that method and return instance of ClientEvents object.
            </summary>
            <returns>A new instance of the <see cref="T:Infragistics.Web.UI.EditorControls.FileUploadClientEvents">FileUploadClientEvents</see>. object.</returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.WebUpload.WriteOptions">
            <summary>
            Returns a string containing the options.  In ClientControlMain, it will return a string 
            representing a JavaScript object (minus the {}) for all properties that have the OptionAttribute
            on them.  If the OptionAttribute has an optionName, it uses that.  Otherwise it uses the 
            property name with the first letter made lowercase.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.WebUpload.SaveViewState">
            <summary>
            Save data modified at run time.
            </summary>
            <returns>Modified data</returns>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.WebUpload.LoadViewState(System.Object)">
            <summary>
            Load data modified at run time.
            </summary>
            <param name="savedState">Modified data</param>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.WebUpload.TrackViewState">
            <summary>
            Enables view state tracking of sub-objects
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.EditorControls.WebUpload.OnInit(System.EventArgs)">
            <summary>
            This method is ONLY used to get sessionid.Fix for bug 102307
            </summary>
            <param name="e"></param>
        </member>
        <member name="E:Infragistics.Web.UI.EditorControls.WebUpload.UploadStarting">
            <summary>
            The UploadStarting event is raised when a file is going to begin uploading for this control
            </summary>
        </member>
        <member name="E:Infragistics.Web.UI.EditorControls.WebUpload.UploadFinishing">
            <summary>
            The UploadFinishing event is raised when a file is going to finish uploading for this control
            </summary>
        </member>
        <member name="E:Infragistics.Web.UI.EditorControls.WebUpload.UploadFinished">
            <summary>
            The UploadFinished event is raised when a file has finished uploading for this control
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.Width">
            <summary>
            Width of the component
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.Height">
            <summary>
            Height of the component.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.AutoStartUpload">
            <summary>
            Get or set whether the file start upload automatically when it is selected. Default is false.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.Mode">
            <summary>
            Get or set multiple or single file upload. 
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.MaxSimultaneousFilesUploads">
            <summary>
            Get or set count of files that could be uploaded at the same time.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.AllowedExtensions">
            <summary>
            Get or set file allowed file extensions. When this collection is empty - there is no validation. Example ["gif", "jpg", "bmp"].
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.ShowFileExtensionIcon">
            <summary>
            Get or set whether to show File Extension icon
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.FileSizeMetric">
            <summary>
            Get or set file size metrics how to be shown files size.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.UploadUrl">
            <summary>
            Get or set URL for uploading.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.MaxUploadedFiles">
            <summary>
            Get or set maximum count of uploaded files.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.ProgressUrl">
            <summary>
            Get or set URL of HTTPHandler to get information about file upload, current size and also to get commands
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.FileExtensionIcons">
            <summary>
            Returns a collection of FileUploadExtensionIcon objects to customize css per extension type
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.LabelUploadButton">
            <summary>
            Get or set label for the first shown browse button. When file is selected for 
            the first time this button is hidden.  If this is empty, uses $.ig.FileUpload.locale.labelUploadButton from the locale JS.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.LabelAddButton">
            <summary>
            Get or set label for browse button in main container.  If this is empty, uses $.ig.FileUpload.locale.labelAddButton from the locale JS.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.LabelClearAllButton">
            <summary>
            Get or set label for summary Clear all button. It will be shown only in muliple upload mode.  
            If this is empty, uses $.ig.FileUpload.locale.labelClearAllButton from the locale JS.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.LabelSummaryTemplate">
            <summary>
            Get or set template for showing summary template. $0 is count of uploaded files. $1 is total count of file to be uploaded. 
            If this is empty, uses $.ig.FileUpload.locale.labelSummaryTemplate from the locale JS.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.LabelSummaryProgressBarTemplate">
            <summary>
            Get or set template for showing uploading information in summary progress bar. It will 
            be shown only in multiple upload mode. $0 uploaded filesize. $1 - total file size.
            If this is empty, uses $.ig.FileUpload.locale.labelSummaryProgressBarTemplate from the locale JS.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.LabelShowDetails">
            <summary>
            Get or set label for show/hide details button when main container is hidden.
            If this is empty, uses $.ig.FileUpload.locale.labelShowDetails from the locale JS.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.LabelHideDetails">
            <summary>
            Get or set label for show/hide details button when main container is shown. 
            If this is empty, uses $.ig.FileUpload.locale.labelHideDetails from the locale JS.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.LabelSummaryProgressButtonCancel">
            <summary>
            Get or set summary progressbar  label for cancelling all files. Shown only in multiple upload mode.
            If this is empty, uses $.ig.FileUpload.locale.labelSummaryProgressButtonCancel from the locale JS.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.LabelSummaryProgressButtonContinue">
            <summary>
            Get or set summary progressbar  label for start upload batch files. Shown only in multiple upload mode and autostartupload is false.
            If this is empty, uses $.ig.FileUpload.locale.labelSummaryProgressButtonContinue from the locale JS.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.LabelSummaryProgressButtonDone">
            <summary>
            Get or set summary progressbar label when upload is finished. Shown only in multiple upload mode.
            If this is empty, uses $.ig.FileUpload.locale.labelSummaryProgressButtonDone from the locale JS.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.LabelProgressBarFileNameContinue">
            <summary>
            Get or set filename when it could not be shown the whole file name and should be shorten.
            If this is empty, uses $.ig.FileUpload.locale.labelProgressBarFileNameContinue from the locale JS.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.ErrorMessageMaxFileSizeExceeded">
            <summary>
            Get or set error message shown when max file size of the uploaded file exceeds the limit
            If this is empty, uses $.ig.FileUpload.locale.errorMessageFileSizeExceeded from the locale JS.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.ErrorMessageGetFileStatus">
            <summary>
            Get or set error message when ajax call to get file status throws error
            If this is empty, uses $.ig.FileUpload.locale.errorMessageGetFileStatus from the locale JS.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.ErrorMessageCancelUpload">
            <summary>
            Get or set error message when request for cancelling upload command fails
            If this is empty, uses $.ig.FileUpload.locale.errorMessageCancelUpload from the locale JS.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.ErrorMessageNoSuchFile">
            <summary>
            Get or set error message when file is not found, when client request to get file with specified key
            If this is empty, uses $.ig.FileUpload.locale.errorMessageNoSuchFile from the locale JS.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.ErrorMessageOther">
            <summary>
            Get or set error message different from other messages
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.ErrorMessageValidatingFileExtension">
            <summary>
            Get or set error message when error is not defined
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.ErrorMessageAJAXRequestFileSize">
            <summary>
            Get or set error message  when request to get file size fails
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.ErrorMessageMaxUploadedFiles">
            <summary>
            Get or set error message  when maximum allowed files exceeded
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.ErrorMessageMaxSimultaneousFiles">
            <summary>
            Get or set error message when maximum simultaneous files is less or equal to 0
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.FileSizeDecimalDisplay">
            <summary>
            Get or set how to format file size - how much digits to be shown after decimal point. Default is 2.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.ClientControlId">
            <summary>
            Get or set client control id - identifier for events.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.ClientEvents">
            <summary>
            Get reference to the <see cref="T:Infragistics.Web.UI.EditorControls.FileUploadClientEvents">FileUploadClientEvents</see>.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.WidgetName">
            <summary>
            Returns the name of the widget
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.EditorControls.WebUpload.DesignTimeImgSrc">
            <summary>
            Returns the url of the image to be displayed at design time in lieu of rendering
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.AssemblyVersionJQuery">
            <summary>
            A class containing strings for the versioning of the files
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.AssemblyVersionJQuery.EndCopyrightYear">
            <summary>
            The end year of the copyright
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.AssemblyVersionJQuery.SatelliteContractVersion">
            <summary>
            The SatelliteContractVersion
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.AssemblyVersionJQuery.MajorMinor">
            <summary>
            The short hand of the year and the version during that year
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.AssemblyVersionJQuery.Build">
            <summary>
            The year plus the version during that year
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.AssemblyVersionJQuery.Revision">
            <summary>
            The build number
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.AssemblyVersionJQuery.Version">
            <summary>
            The full version string
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.AssemblyVersionJQuery.CLRID">
            <summary>
            The clr id
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.AssemblyVersionJQuery.DesignerAssemblyName">
            <summary>
            The designer assembly name
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.WidgetOption">
            <summary>
            This class is used to denote properties on a client control wrapper that are simple JQuery options.
            More complex options (that expect a JavaScript object) should be manually coded into an override of
            WriteOptions.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.WidgetOption.#ctor">
            <summary>
            Default constructor
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.WidgetOption.#ctor(System.String)">
            <summary>
            Constructor that defines the option name of for the property
            </summary>
            <param name="optionName">The JQuery Option name for this property</param>
        </member>
        <member name="P:Infragistics.Web.UI.Framework.WidgetOption.OptionName">
            <summary>
            Returns the option name set in the constructor, if there was one
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.ClientDataBot">
            <summary>
            A class with some static methods for working with data
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientDataBot.ChangeType``1(System.Object)">
            <summary>
            Changes a value to any type, including Nullable ones and the Guid type.
            </summary>
            <typeparam name="T">The type to convert to</typeparam>
            <param name="value">Value to convert.</param>
            <returns>Converted value.</returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientDataBot.ChangeType(System.Object,System.Type)">
            <summary>
            Changes a value to any type, including Nullable ones and the Guid type.
            </summary>
            <param name="value">Value to convert.</param>
            <param name="toType">Type to convert to.</param>
            <returns>Converted value.</returns>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ClientDataBot.Compare(System.Object,System.Object)">
            <summary>
            Compares two values. Takes into account the Guid type.
            </summary>
            <param name="value1">First value to compare.</param>
            <param name="value2">Second value to compare.</param>
            <returns></returns>
        </member>
        <member name="T:Infragistics.Web.UI.jQuery.DesignerFx.ConfigSettings">
            <summary>
            Serializes jQuery styling options into an isolated storage
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.jQuery.DesignerFx.ConfigSettings.#ctor">
            <summary>
            Default constructor
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.jQuery.DesignerFx.ConfigSettings.Load">
            <summary>
            Load settings from registry
            </summary>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.jQuery.DesignerFx.ConfigSettings.Save">
            <summary>
            Save updated settings back into the registry
            </summary>
            <returns></returns>
        </member>
        <member name="P:Infragistics.Web.UI.jQuery.DesignerFx.ConfigSettings.DisplayJQueryFilesImportMessage">
            <summary>
            Returns whether to display the import message
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.DesignerFx.ConfirmMethod">
            <summary>
            Fires an event to confirm if copying should proceed
            </summary>
            <param name="destPath">The destination path</param>
            <returns></returns>
        </member>
        <member name="T:Infragistics.Web.UI.DesignerFx.FileUtility">
            <summary>
            A class to copy files and directories
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.DesignerFx.FileUtility.CopyDirectory(System.String,System.String)">
            <summary>
            Copies a directory. Overwrites existing one.
            </summary>
            <param name="from">Source directory to copy.</param>
            <param name="to">Destination directory to copy to.</param>
        </member>
        <member name="M:Infragistics.Web.UI.DesignerFx.FileUtility.CopyDirectory(System.String,System.String,Infragistics.Web.UI.DesignerFx.ConfirmMethod,Infragistics.Web.UI.DesignerFx.ConfirmMethod)">
            <summary>
            Copies a directory.
            </summary>
            <param name="from">Source directory to copy.</param>
            <param name="to">Destination directory to copy to.</param>
            <param name="confirmMethod">Method to be called if directory exists. If the method returns False copying is aborted.</param>
            <param name="confirmReadOnly">Method to be called if file is read only.</param>
        </member>
        <member name="M:Infragistics.Web.UI.DesignerFx.FileUtility.RemoveReadOnlyFromDirectory(System.String)">
            <summary>
            Removes read only from all files within a directory
            </summary>
            <param name="dir"></param>
        </member>
        <member name="M:Infragistics.Web.UI.DesignerFx.FileUtility.RemoveReadOnlyFromFile(System.String)">
            <summary>
            Removes read only attribute from a file
            </summary>
            <param name="file"></param>
        </member>
        <member name="M:Infragistics.Web.UI.DesignerFx.FileUtility.GetShortPath(System.String,System.Int32)">
            <summary>
            Gets short path of a file path
            </summary>
            <param name="filePath"></param>
            <param name="lengthToDisplay"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.DesignerFx.FileUtility.DeleteDirectory(System.String)">
            <summary>
            Deletes a directory at the given path
            </summary>
            <param name="folderPath"></param>
        </member>
        <member name="M:Infragistics.Web.UI.DesignerFx.FileUtility.DeleteFolder(System.String)">
            <summary>
            Deletes a folder at the given path
            </summary>
            <param name="folderPath"></param>
        </member>
        <member name="M:Infragistics.Web.UI.DesignerFx.FileUtility.CreateDirectory(System.String)">
            <summary>
            Creates a directory at the given path if it does not exist
            </summary>
            <param name="folderPath"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.DesignerFx.FileUtility.GetFileNameFromPath(System.String)">
            <summary>
            Gets a file name from a path
            </summary>
            <param name="path"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.DesignerFx.FileUtility.GetDirectoryFromFilePath(System.String)">
            <summary>
            Gets a directory name from a path
            </summary>
            <param name="path"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.DesignerFx.FileUtility.DeleteFile(System.String)">
            <summary>
            Deletes a file at the given path if it exists
            </summary>
            <param name="filePath"></param>
        </member>
        <member name="M:Infragistics.Web.UI.DesignerFx.FileUtility.DirectoryPathsEqual(System.String,System.String)">
            <summary>
            Tells whether two directory paths are equal
            </summary>
            <param name="dir1"></param>
            <param name="dir2"></param>
            <returns></returns>
        </member>
        <member name="M:Infragistics.Web.UI.DesignerFx.FileUtility.GetFilesPath">
            <summary>
            Returns the path to the jQuery files
            </summary>
            <returns></returns>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.AppStyling.ImportCssJs">
            <summary>
            A form alerting the user that the jQuery css and js files will be imported to the website
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.AppStyling.ImportCssJs.#ctor(Infragistics.Web.UI.jQuery.DesignerFx.ConfigSettings)">
            <summary>
            Creates a new ImportCssJs
            </summary>
            <param name="configSettings">The config settings to use</param>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.AppStyling.ImportCssJs.components">
            <summary>
            Required designer variable.
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.AppStyling.ImportCssJs.Dispose(System.Boolean)">
            <summary>
            Clean up any resources being used.
            </summary>
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.AppStyling.ImportCssJs.InitializeComponent">
            <summary>
            Required method for Designer support - do not modify
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Framework.ImportManager">
            <summary>
            Summary description for ImportManager.
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.ImportManager.DefaultPath">
            <summary>
            The default path for the jQuery css and JavaScript files to be copied to
            </summary>
        </member>
        <member name="F:Infragistics.Web.UI.Framework.ImportManager.DesignMode">
            <summary>
            Whether we're in design mode or not
            </summary>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ImportManager.Initialize(System.Web.UI.Control,System.Boolean)">
            <summary>
            Initialize the import manager
            </summary>
            <param name="control">The control that is initializing</param>
            <param name="internalCall">Whether this is an internal call</param>
        </member>
        <member name="M:Infragistics.Web.UI.Framework.ImportManager.GetActiveDocumentPath(System.IServiceProvider)">
            <summary>
            Gets the active document path
            </summary>
            <param name="provider"></param>
            <returns></returns>
        </member>
        <member name="T:Infragistics.Web.UI.Resources.FileUploadStrings">
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.Culture">
            <summary>
              Overrides the current thread's CurrentUICulture property for all
              resource lookups using this strongly typed resource class.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_E_UF_CancelAllClicked">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called after athe cancel all button has been clicked.  Only in multiple upload mode..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_E_UF_FileSelected">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called after file to upload has been selected..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_E_UF_FileSelecting">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called before selecting a file to upload.  Fired when browse button is pressed..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_E_UF_FileUploadAborted">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called after a file upload has been cancelled.  Fired when the server response that the file is cancelled..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_E_UF_FileUploaded">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called after a file has been uploaded..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_E_UF_FileUploading">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called before file starts to upload.  Fired everytime when file uploader get status for the upload..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_P_UF_AllowedExtensions">
            <summary>
              Looks up a localized string similar to Get or set file allowed file extensions. When this collection is empty - there is no validation. Example [&quot;gif&quot;, &quot;jpg&quot;, &quot;bmp&quot;]..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_P_UF_AutoStartUpload">
            <summary>
              Looks up a localized string similar to Get or set whether the file start upload automatically when it is selected. Default is false..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_P_UF_CustomCss">
            <summary>
              Looks up a localized string similar to Get or set custom css classes for file upload..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_P_UF_E_Extension">
            <summary>
              Looks up a localized string similar to Gets/sets the extension string (minus the &apos;.&apos;) for this object.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_P_UF_EI_CSS">
            <summary>
              Looks up a localized string similar to Gets/sets the css class applied to the extensions that match those in this object&apos;s Extensions collection.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_P_UF_EI_Default">
            <summary>
              Looks up a localized string similar to Gets/sets whether this is default extension icon.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_P_UF_EI_Extensions">
            <summary>
              Looks up a localized string similar to A list of extension strings to use this css class for the icon..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_P_UF_FileExtensionIcons">
            <summary>
              Looks up a localized string similar to Returns a collection of FileUploadExtensionIcon objects to customize css per extension type.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_P_UF_FileSizeMetric">
            <summary>
              Looks up a localized string similar to Get or set file size metrics how to be shown files size..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_P_UF_MaxSimultaneousFilesUploads">
            <summary>
              Looks up a localized string similar to Get or set count of files that could be uploaded at the same time..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_P_UF_Mode">
            <summary>
              Looks up a localized string similar to Get or set multiple or single file upload..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_P_UF_ProgressUrl">
            <summary>
              Looks up a localized string similar to Get or set URL of HTTPHandler to get information about file upload, current size and also to get commands.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_P_UF_ShowFileExtensionIcon">
            <summary>
              Looks up a localized string similar to Get or set whether to show File Extension icon.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_P_UF_UploadUrl">
            <summary>
              Looks up a localized string similar to Get or set URL for uploading..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LD_P_UF_MaxUploadedFiles">
            <summary>
              Looks up a localized string similar to Get or set URL for maximum allowed upload files.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LDV_WFU_LabelBrowseButton">
            <summary>
              Looks up a localized string similar to Upload file.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FileUploadStrings.LDV_WFU_SummaryLabelTemplate">
            <summary>
              Looks up a localized string similar to $0$ of $1$ uploaded.
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Resources.FxStrings">
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.Culture">
            <summary>
              Overrides the current thread's CurrentUICulture property for all
              resource lookups using this strongly typed resource class.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.AS_BrowseForPath">
            <summary>
              Looks up a localized string similar to The current path for the AppStyling Directory: {0} cannot be opened as a file path.  Would you like to browse for the appropriate physical file path?.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.AS_BrowseForPathCaption">
            <summary>
              Looks up a localized string similar to StyleSetName Selection.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.AS_Caption">
            <summary>
              Looks up a localized string similar to Application Styling.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.AS_ChooseStyleSetWarning">
            <summary>
              Looks up a localized string similar to At least one style set must be chosen to import..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.AS_CommonDocumentsPathNotExist">
            <summary>
              Looks up a localized string similar to The installation has not created a valid setting so that the following path is invalid and does not exist:{0}. You may need to reinstall the NetAdvantage product or contact Tech Support..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.AS_ConfirmReadOnly">
            <summary>
              Looks up a localized string similar to The following file is marked Read-Only. Are you sure you want to overwrite it?.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.AS_DirectoryNotExist">
            <summary>
              Looks up a localized string similar to The specified AppStyling Library does not exist: {0}. Please check your AppStyling Configuration AddIn Options settings.  The Default AppStyling Library setting may need adjustment..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.AS_Empty">
            <summary>
              Looks up a localized string similar to &lt;empty&gt;.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.AS_FileDoesntExist">
            <summary>
              Looks up a localized string similar to File {0} doesn&apos;t exist.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.AS_Import">
            <summary>
              Looks up a localized string similar to Import....
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.AS_ImportDialogCaption">
            <summary>
              Looks up a localized string similar to Import StyleSets.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.AS_ImportInitialStyleSet">
            <summary>
              Looks up a localized string similar to AppStyling for this project has not been configured.  Would you like to create the resource directory and import the default StyleSet?.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.AS_ImportInitialStyleSetCaption">
            <summary>
              Looks up a localized string similar to Import Initial StyleSet.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.AS_ImportInitialStyleSetDecline">
            <summary>
              Looks up a localized string similar to In order to obtain proper display of this control, a valid StyleSetPath needs to be specified.  Please go to the Application Styling Configuration Add-In to import an appropriate StyleSet for your control..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.AS_ImportWslFileFilter">
            <summary>
              Looks up a localized string similar to Infragistics Web Style Sets (*.wsl)|*.wsl|All files (*.*)|*.*.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.AS_JQueryFilesPathNotExist">
            <summary>
              Looks up a localized string similar to The installation has not created a valid setting so that the following path is invalid and does not exist:{0}. You may need to reinstall the NetAdvantage product or contact Tech Support..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.DataBot_DataSourceDoesntExist">
            <summary>
              Looks up a localized string similar to The specified DataSource Id does not exist on the current page for Control ID: {0}, DataSourceID: {1}.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.DataBot_MultipleDataSources">
            <summary>
              Looks up a localized string similar to The control {0} has more than one data source specified.  The DataSource and DataSourceID properties cannot both be set..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.DataBot_NoNamingContainer">
            <summary>
              Looks up a localized string similar to No proper naming container found for DataSourceID.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.DataSourceAdapter_InvalidDataKeyField">
            <summary>
              Looks up a localized string similar to DataKeyField is invalid.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.EX_NoScriptManager">
            <summary>
              Looks up a localized string similar to This Infragistics control requires a ScriptManager object on the page in order to operate correctly..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.JQ_DirectoryNotExist">
            <summary>
              Looks up a localized string similar to The specified folder for Infragistics jQuery files does not exist: {0}. Please check your installation or contact Tech Support..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LC_Accessibility">
            <summary>
              Looks up a localized string similar to Accessibility.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LC_Appearance">
            <summary>
              Looks up a localized string similar to Appearance.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LC_AppStyling">
            <summary>
              Looks up a localized string similar to Application Styling.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LC_Behavior">
            <summary>
              Looks up a localized string similar to Behavior.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LC_Data">
            <summary>
              Looks up a localized string similar to Data.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LC_Layout">
            <summary>
              Looks up a localized string similar to Layout.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AI_P_AltText">
            <summary>
              Looks up a localized string similar to Gets sets alt attribute for image.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AI_P_AltText_Default">
            <summary>
              Looks up a localized string similar to Async post.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AI_P_BlockArea">
            <summary>
              Looks up a localized string similar to Gets sets option to create half transparent shell which blocks control or browser&apos;s window..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AI_P_BlockCssClass">
             <summary>
               Looks up a localized string similar to Gets sets css class for blocking element which is used when BlockArea property is enabled.
            If value is not set, then corresponding property of shared indicator is used.
            If both shared and local properties are not set, then ig_AjaxIndicatorBlock or similar class of current AppStyling is used..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AI_P_CssClass">
             <summary>
               Looks up a localized string similar to Gets sets css class for indicator.
            If value is not set, then corresponding property of shared indicator is used.
            If both shared and local properties are not set, then ig_AjaxIndicator or similar class of current AppStyling is used..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AI_P_Enabled">
             <summary>
               Looks up a localized string similar to Gets sets option to enable or disable indicator.
            If value is NotSet, then corresponding property of shared indicator is used.
            If both shared and local properties are NotSet, then indicator is disabled.
            That property does not affect BlockType..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AI_P_FadeInDuration">
            <summary>
              Looks up a localized string similar to Gets sets duration of fade animation for show action..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AI_P_FadeInEquationType">
            <summary>
              Looks up a localized string similar to Gets sets equation type of fade animation for show action..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AI_P_FadeOutDuration">
            <summary>
              Looks up a localized string similar to Gets sets duration of fade animation for hide action..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AI_P_FadeOutEquationType">
            <summary>
              Looks up a localized string similar to Gets sets equation type of fade animation for hide action..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AI_P_ImageUrl">
             <summary>
               Looks up a localized string similar to Gets sets image url for indicator.
            If Text is set, then that property has no effect..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AI_P_Location">
            <summary>
              Looks up a localized string similar to Gets sets location of indicator relative to the bounds of target element..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AI_P_OffsetLeft">
            <summary>
              Looks up a localized string similar to Gets sets extra horizontal offset of indicator from Location in pixels..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AI_P_OffsetTop">
            <summary>
              Looks up a localized string similar to Gets sets extra vertical offset of indicator from Location in pixels..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AI_P_RelativeToControl">
            <summary>
              Looks up a localized string similar to Gets sets option to set position of indicator relative to bounds of control or to browser&apos;s window..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AI_P_Text">
             <summary>
               Looks up a localized string similar to Gets sets innerHTML for indicator. That may include any kinds of html tags and optional {0} flag which will be replaced on client by IMG with ImageUrl.
            That property has priority over ImageUrl..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AJAXContentPane_P_EnableAjax">
            <summary>
              Looks up a localized string similar to Gets sets option to enable or disable asynchronous mode. If that property has value of NotSet, then corresponding property of owner is used..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AJAXContentPane_P_EnableDynamicUpdatePanel">
             <summary>
               Looks up a localized string similar to Gets sets option to dynamically create UpdatePanel when asynchronous mode is enabled.
            If that property is enabled, then Template is wrapped into dynamically created UpdatePanel.
            Note: if that property has value of NotSet, then corresponding property of owner is used..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AO_Duration">
            <summary>
              Looks up a localized string similar to Determines how long, in miliseconds, the animation should last..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_AO_EquationType">
             <summary>
               Looks up a localized string similar to Determines the type of Equation that should be used to perform the Animation.
            Equations determine things such as if the Animation will start our slow and speed up or if it should go a constant speed..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_ClientEvents">
            <summary>
              Looks up a localized string similar to Client-side event handlers. Use this property to define handlers for client-side events..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_ClientEventsBase_P_AJAXResponse">
             <summary>
               Looks up a localized string similar to Gets sets name of javascript function which is called after control gets AJAX response from the server.
            Second param in handler is instance of AJAXResponseEventArgs class, which provides information about response objects..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_ClientEventsBase_P_AJAXResponseError">
             <summary>
               Looks up a localized string similar to Gets sets name of javascript function which is called when control gets AJAX response from the server.
            Default alert message can be canceled.
            Second param in handler is instance of AJAXResponseErrorEventArgs class, which provides information about response objects..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_ClientEventsBase_P_Initialize">
             <summary>
               Looks up a localized string similar to Gets sets name of javascript function which is called after javascript object was created and initialized.
            That event may fire after a control was resized and painted..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_ContentPane_P_ContentUrl">
            <summary>
              Looks up a localized string similar to Gets sets name of url which is used for the src attribute of IFRAME element used by ContentPane..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_ContentPane_P_FrameBorder">
            <summary>
              Looks up a localized string similar to Get sets an option to enable or disable default borders of IFRAME used for ContentUrl..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_ContentPane_P_FrameScrolling">
            <summary>
              Looks up a localized string similar to Get sets an option to enable or disable default scrolling of IFRAME used for ContentUrl..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_ContentPane_P_FrameTitle">
             <summary>
               Looks up a localized string similar to Gets sets title attribute for IFRAME used when ContentUrl is set.
            If value of property is not set and equals to [Default], then the value of ContentUrl is used for title..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_ContentPane_P_UserControlUrl">
             <summary>
               Looks up a localized string similar to Gets sets name of UserControl which will be used instead of Template.
            Notes:
            If ContentUrl is set, then that property has no effect.
            That property has priority over possible child controls defined by Template..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_DialogButton_P_NormalAltText">
             <summary>
               Looks up a localized string similar to Gets sets the alt attribute for IMG element of button when the Pressed property is false.
            If value is equal to NotSet, then the default value is used, which can be something like &quot;Minimize&quot;, &quot;Pin&quot;, etc..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_DialogButton_P_NormalImageHoverUrl">
             <summary>
               Looks up a localized string similar to Gets sets the url for image which is displayed on button when the Pressed property is false and mouse is moved over button.
            If value is empty, then the default value is used and corresponding image should be located in the &quot;images&quot; subdirectory at location defined by AppStyling..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_DialogButton_P_NormalImageMouseDownUrl">
             <summary>
               Looks up a localized string similar to Gets sets the url for image which is displayed on button when the Pressed property is false and mouse was pressed on button.
            If value is empty, then the default value is used and corresponding image should be located in the &quot;images&quot; subdirectory at location defined by AppStyling..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_DialogButton_P_NormalImageUrl">
             <summary>
               Looks up a localized string similar to Gets sets the url for image which is displayed on button when the Pressed property is false.
            If value is empty, then the default value is used and corresponding image should be located in the &quot;images&quot; subdirectory at location defined by AppStyling..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_DialogButton_P_Pressed">
            <summary>
              Looks up a localized string similar to Gets sets state of button and corresponding state of WebDialogWindow or Pane..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_DialogButton_P_RestoreAltText">
             <summary>
               Looks up a localized string similar to Gets sets the alt attribute for IMG element of button when the Pressed property is true.
            The default value is [Default]. This means that a Default value will be used unless otherwise specified..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_DialogButton_P_RestoreImageHoverUrl">
             <summary>
               Looks up a localized string similar to Gets sets the url for image which is displayed on button when the Pressed property is true and mouse is moved over button.
            If value is empty, then the default value is used and corresponding image should be located in the &quot;images&quot; subdirectory at location defined by AppStyling..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_DialogButton_P_RestoreImageMouseDownUrl">
             <summary>
               Looks up a localized string similar to Gets sets the url for image which is displayed on button when the Pressed property is true and mouse was pressed on button.
            If value is empty, then the default value is used and corresponding image should be located in the &quot;images&quot; subdirectory at location defined by AppStyling..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_DialogButton_P_RestoreImageUrl">
             <summary>
               Looks up a localized string similar to Gets sets the url for image which is displayed on button when the Pressed property is true.
            If value is empty, then the default value is used and corresponding image should be located in the &quot;images&quot; subdirectory at location defined by AppStyling..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_DialogButton_P_Visible">
             <summary>
               Looks up a localized string similar to Gets sets visibility of button.
            If button is invisible, then the Pressed property is still available and defines corresponding state of WebDialogWindow or Pane..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_HasData">
            <summary>
              Looks up a localized string similar to (Has Data).
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_IControlCallback_P_EnableAjaxViewState">
             <summary>
               Looks up a localized string similar to Gets sets ability to maintain view state of controls on page if their properties were modified while asynchronous postback of this control.
            Notes:
            That property has effect only when asynchronous postback is triggered by this control.
            Those can be postbacks triggered by AutoPostBackFlags with value &quot;Async&quot;, or internal postbacks such as sorting of grid.
            If that property is disabled, then properties of any control on page modified while that async postback will be lost after a full postback.
            Value false will  [rest of string was truncated]&quot;;.
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_IT_TemplateID">
            <summary>
              Looks up a localized string similar to Item template&apos;s ID. The ID is used to assign the template to individual items of controls..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutHeader_P_ButtonAreaCssClass">
            <summary>
              Looks up a localized string similar to Gets sets css class applied to html element which contains control buttons..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutHeader_P_ButtonCssClass">
            <summary>
              Looks up a localized string similar to Gets sets ss class applied to html elements which render buttons..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutHeader_P_ButtonsMouseStates">
            <summary>
              Looks up a localized string similar to Gets sets behavior of control-buttons on client related to mouse..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutHeader_P_CaptionAlignment">
            <summary>
              Looks up a localized string similar to Gets sets horizontal alignment of caption text and image relative to the width of whole header..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutHeader_P_CaptionText">
            <summary>
              Looks up a localized string similar to Gets sets text displayed on caption..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutHeader_P_CaptionTextCssClass">
            <summary>
              Looks up a localized string similar to Gets sets css class applied to html element which renders caption text..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutHeader_P_CloseBox">
            <summary>
              Looks up a localized string similar to Gets reference to container of properties related to close/show features..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutHeader_P_ImageAlignment">
            <summary>
              Looks up a localized string similar to Gets sets horizontal alignment of caption image relative the text..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutHeader_P_ImageAltText">
            <summary>
              Looks up a localized string similar to Gets sets alt attribute applied to the html element which renders image located next to caption text..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutHeader_P_ImageCssClass">
            <summary>
              Looks up a localized string similar to Gets sets css class applied to html element which renders image located next to caption text..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutHeader_P_ImageUrl">
            <summary>
              Looks up a localized string similar to Gets sets url for image displayed on caption next to the CaptionText..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutHeader_P_MaximizeBox">
            <summary>
              Looks up a localized string similar to Gets reference to container of properties related to minimize/restore features..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutHeader_P_MinimizeBox">
            <summary>
              Looks up a localized string similar to Gets reference to container of properties related to maximize/restore features..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutHeader_P_PinBox">
            <summary>
              Looks up a localized string similar to Gets reference to container of properties related to pin/unpin features..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutPane_P_EnableRelativeLayout">
             <summary>
               Looks up a localized string similar to Gets or sets the request to render relative position for content.
            Notes:
            That property is designed to get around differences in behavior of different browsers, when child elements of content have relative or absolute positions.
            It is recommended to enable that property when child controls or parts of html generated by them use position:relative or position:absolute.
            For example, WebImageViewer uses position:relative style attribute, and it may fail to be scrolled or it can go out of content bounds..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutPane_P_ScrollBars">
            <summary>
              Looks up a localized string similar to Gets sets the value for the overflow attribute of the DIV element which renders child controls of LayoutPane..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutPane_P_ScrollLeft">
            <summary>
              Looks up a localized string similar to Gets sets the value for the scrollLeft attribute of the DIV element which renders child controls of LayoutPane..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_LayoutPane_P_ScrollTop">
            <summary>
              Looks up a localized string similar to Gets sets the value for the scrollTop attribute of the DIV element which renders child controls of LayoutPane..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_P_CheckBoxState">
            <summary>
              Looks up a localized string similar to The current check box state..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_P_ClientEvents">
            <summary>
              Looks up a localized string similar to List of events which are fired on client side..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_P_CssClass">
            <summary>
              Looks up a localized string similar to Gets sets css class applied to html element which represents this control on client..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_P_Enabled">
            <summary>
              Looks up a localized string similar to Enabled state of the item..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_P_EnableEmbeddedResources">
            <summary>
              Looks up a localized string similar to Whether to use embedded JavaScript and css files.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_P_Key">
            <summary>
              Looks up a localized string similar to Returns/sets a string value that can be used to store extra information on the item..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_P_KeyField">
            <summary>
              Looks up a localized string similar to A data field that will be mapped to the Key property of the Item..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_P_NavigateUrl">
            <summary>
              Looks up a localized string similar to Returns/sets a url that will be navigated to when an item is clicked..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_P_NavigateUrlField">
            <summary>
              Looks up a localized string similar to A data field that will be mapped to the NavigateUrl property of the Item..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_P_NavigateUrlFormatString">
            <summary>
              Looks up a localized string similar to Returns or sets a string value that is used to format the NavigateUrl property of a Item when the Item is being databound..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_P_Target">
            <summary>
              Looks up a localized string similar to Returns/sets where the NavigateUrl will be navigated to when an item is clicked..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_P_TargetField">
            <summary>
              Looks up a localized string similar to A data field that will be mapped to the Target property of the Item..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_P_Templates">
            <summary>
              Looks up a localized string similar to Collection of Template controls..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_P_ToolTip">
            <summary>
              Looks up a localized string similar to Returns/sets the text that will be displayed when the mouse is over the item..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_P_ToolTipField">
            <summary>
              Looks up a localized string similar to A data field that will be mapped to the ToolTip property of the Item..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_P_Visible">
            <summary>
              Looks up a localized string similar to Indicates whether the item is visible..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_Resizer_P_AltText">
            <summary>
              Looks up a localized string similar to Gets sets alt attribute for resizing handle image..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_Resizer_P_CssClass">
            <summary>
              Looks up a localized string similar to Gets sets css class which is applied to html element which represents resizing handle..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_Resizer_P_Enabled">
            <summary>
              Looks up a localized string similar to Gets sets ability to resize..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_Resizer_P_ImageUrl">
             <summary>
               Looks up a localized string similar to Gets sets url for image which is displayed on resizing handle.
            If value is empty, then the default value is used and corresponding image should be located in the &quot;images&quot; subdirectory at location defined by AppStyling..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_Resizer_P_MaxHeight">
            <summary>
              Looks up a localized string similar to Gets sets maximum height of control..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_Resizer_P_MaxWidth">
            <summary>
              Looks up a localized string similar to Gets sets maximum width of control..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_Resizer_P_MinHeight">
            <summary>
              Looks up a localized string similar to Gets sets minimum height of control. If value is less than 1, then minimum height is calculated automatically..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_Resizer_P_MinWidth">
            <summary>
              Looks up a localized string similar to Gets sets minimum width of control. If value is less than 1, then minimum width is calculated automatically..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_SlideFadeAnimation_FadeCloseDuration">
            <summary>
              Looks up a localized string similar to Gets sets duration of fade animation for close action. Duration is measured in milliseconds. Value of 0 will disable fade animation for close action..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_SlideFadeAnimation_FadeCloseEquationType">
            <summary>
              Looks up a localized string similar to Gets sets equation type of fade animation for close action.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_SlideFadeAnimation_FadeOpenDuration">
            <summary>
              Looks up a localized string similar to Gets sets duration of fade animation for open action. Duration is measured in milliseconds. Value of 0 will disable fade animation for open action..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_SlideFadeAnimation_FadeOpenEquationType">
            <summary>
              Looks up a localized string similar to Gets sets equation type of fade animation for open action.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_SlideFadeAnimation_SlideCloseDirection">
            <summary>
              Looks up a localized string similar to Gets sets direction of slide animation for close action.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_SlideFadeAnimation_SlideCloseDuration">
            <summary>
              Looks up a localized string similar to Gets sets duration of slide animation for close action. Duration is measured in milliseconds. Value of 0 will disable slide animation for close action..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_SlideFadeAnimation_SlideCloseEquationType">
            <summary>
              Looks up a localized string similar to Gets sets equation type of slide animation for close action.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_SlideFadeAnimation_SlideOpenDirection">
            <summary>
              Looks up a localized string similar to Gets sets direction of slide animation for open action.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_SlideFadeAnimation_SlideOpenDuration">
            <summary>
              Looks up a localized string similar to Gets sets duration of slide animation for open action. Duration is measured in milliseconds. Value of 0 will disable slide animation for open action..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_SlideFadeAnimation_SlideOpenEquationType">
            <summary>
              Looks up a localized string similar to Gets sets equation type of slide animation for open action.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_StyleSetName">
            <summary>
              Looks up a localized string similar to Name of the Application Styling Framework(tm) style set defining the themed appearance for this control..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_StyleSetPath">
            <summary>
              Looks up a localized string similar to Path containing the Application Styling Framework(tm) style set files for this type of control..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_WSM_IC_P_EnableCDN">
            <summary>
              Looks up a localized string similar to Directs all Infragistics controls on the page to use CDN as the source for JavaScript files..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LD_WSM_IC_P_EnableCombining">
            <summary>
              Looks up a localized string similar to When CDN is enabled all of the Infragistics JavaScript files can be downloaded as one combined file. This property enables combining CDN JavaScript files..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LDR_UltraProdInfo_Expiration1">
            <summary>
              Looks up a localized string similar to Activation Grace Period Expired.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LDR_UltraProdInfo_Expiration2">
            <summary>
              Looks up a localized string similar to Trial Period Expired.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LDR_UltraProdInfo_Expiration4">
            <summary>
              Looks up a localized string similar to {0} usage days / {1} calendar weeks.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LDR_UltraProdInfo_Expiration5">
            <summary>
              Looks up a localized string similar to N/A.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LDR_UltraProdInfo_Expiration6">
            <summary>
              Looks up a localized string similar to Invalid License Information.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LDR_UltraProdInfo_Expiration7">
            <summary>
              Looks up a localized string similar to Incomplete License Info.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LDR_UltraProdInfo_Expiration8">
            <summary>
              Looks up a localized string similar to {Error}.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LDR_UltraProdInfo_Expiration9">
            <summary>
              Looks up a localized string similar to Product Not Installed Properly.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentException_10">
            <summary>
              Looks up a localized string similar to Key not found.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentException_11">
            <summary>
              Looks up a localized string similar to key.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentException_12">
            <summary>
              Looks up a localized string similar to Key required.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentException_13">
            <summary>
              Looks up a localized string similar to Key already exists.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentException_14">
            <summary>
              Looks up a localized string similar to Key.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentException_18">
            <summary>
              Looks up a localized string similar to codePrefix.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentException_19">
            <summary>
              Looks up a localized string similar to Invalid cdkey..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentException_20">
            <summary>
              Looks up a localized string similar to UltraPropControlType must be derived from UltraPropertyControlBase..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentNullException">
            <summary>
              Looks up a localized string similar to The argument, {0}, is not allowed to be null..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentNullException_15">
            <summary>
              Looks up a localized string similar to Add.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentNullException_16">
            <summary>
              Looks up a localized string similar to Insert.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentNullException_2">
            <summary>
              Looks up a localized string similar to type.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentNullException_3">
            <summary>
              Looks up a localized string similar to assembly.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentOutOfRangeException_4">
            <summary>
              Looks up a localized string similar to eventIndex.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentOutOfRangeException_5">
            <summary>
              Looks up a localized string similar to in EventManagerBase.InProgress.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentOutOfRangeException_6">
            <summary>
              Looks up a localized string similar to in EventManagerBase.IncrementInProgress.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentOutOfRangeException_7">
            <summary>
              Looks up a localized string similar to in EventManagerBase.DecrementInProgress.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentOutOfRangeException_8">
            <summary>
              Looks up a localized string similar to in EventManagerBase.IsEventEnabled.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_ArgumentOutOfRangeException_9">
            <summary>
              Looks up a localized string similar to in EventManagerBase.SetEventEnabled.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_CE_GetProperty">
            <summary>
              Looks up a localized string similar to ClientSideBase.GetProperty: the id={0} is out of range defined by GetClientEventNameList()..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_CE_InvalidChars">
            <summary>
              Looks up a localized string similar to Value should contain the name of a javascript function. Space, quote, parenthesis, etc. characters are not allowed..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_CE_SetProperty">
            <summary>
              Looks up a localized string similar to ClientSideBase.SetProperty: the id={0} is out of range defined by GetClientEventNameList()..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_CO_SetId">
            <summary>
              Looks up a localized string similar to ID cannot be set on a CollectionObject.  This property is reserved for internal use..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_EmptyDate">
            <summary>
              Looks up a localized string similar to Date is empty..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_LoadViewStateException">
            <summary>
              Looks up a localized string similar to Load View State Exception.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_NotSupportedException_0">
            <summary>
              Looks up a localized string similar to About dialog can only be used for Infragistics controls.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_NotSupportedException_1">
            <summary>
              Looks up a localized string similar to About dialog can only be used for licensed Infragistics controls.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_NotSupportedException_17">
            <summary>
              Looks up a localized string similar to UltraLicenseAttributeBase can only be used for Infragistics controls.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_PresetLoadTargetNull_Msg">
            <summary>
              Looks up a localized string similar to In order to load a preset, the target parameter must not be null..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_PresetLoadTWNull_Msg">
            <summary>
              Looks up a localized string similar to In order to load a preset, the textWriter parameter must not be null..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_StreamNotWritable">
            <summary>
              Looks up a localized string similar to Serialization failed. The provided stream does not support write operation..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_WrongViewStateFlagValue">
            <summary>
              Looks up a localized string similar to Invalid ViewStateFlag value.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LE_XAttEvenParamCount">
            <summary>
              Looks up a localized string similar to GetXAttributeValue accepts even number of parameters..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LHE_CompositeKeyException">
            <summary>
              Looks up a localized string similar to Composite key &apos;{0}&apos; is not supported for IEnumerable data sources..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LHE_ItemDoesNotExistsException">
            <summary>
              Looks up a localized string similar to Error resolving path. {0} with key value {1} does not exist..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LHE_PropertyNotFoundException">
            <summary>
              Looks up a localized string similar to Type {0} does not contain {1} property..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LHE_ResolvingPathException">
            <summary>
              Looks up a localized string similar to Error resolving path: {0}.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LicensedProductActivationGracePrompt">
            <summary>
              Looks up a localized string similar to The non-activated usage period for {2} will expire after {0} usage day(s) or {1} calendar week(s), whichever comes first.  You need to activate this product using the Product Activation Wizard..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LicensedProductPromptDialogTitle">
            <summary>
              Looks up a localized string similar to Infragistics {0}.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LicensedProductTrialPeriodPrompt">
            <summary>
              Looks up a localized string similar to This trial version of {2} will expire after {0} usage day(s) or {1} calendar week(s), whichever comes first..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LicenseExceptionBetaExpired">
            <summary>
              Looks up a localized string similar to {0} Beta expired on {1}.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LicenseExceptionGracePeriodExpired">
             <summary>
               Looks up a localized string similar to {0} {1}
            You need to activate this product using the Product Activation Wizard..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LicenseExceptionIncomplete">
            <summary>
              Looks up a localized string similar to Incomplete license information.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LicenseExceptionInformationNotFound">
            <summary>
              Looks up a localized string similar to No license information found.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LicenseExceptionInvalidCDKey">
            <summary>
              Looks up a localized string similar to Invalid license information.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LicenseExceptionSecurityPermission">
            <summary>
              Looks up a localized string similar to Insufficient security permissions to determine license status..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LicenseExceptionTrialExpired">
            <summary>
              Looks up a localized string similar to {0} {1}.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LicenseExceptionUnlicensed">
            <summary>
              Looks up a localized string similar to Product not licensed.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LicenseExceptionUnlicensedProgram">
             <summary>
               Looks up a localized string similar to This program was created using an unlicensed (demo) copy of {0}. 
            Please contact the author/vendor of the application..
             </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.LoadViewState_Exception">
            <summary>
              Looks up a localized string similar to {0} ViewState is corrupted..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings.TrialKey_AboutDialogLabel">
            <summary>
              Looks up a localized string similar to Trial.
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Resources.FxStrings_runtime">
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.Culture">
            <summary>
              Overrides the current thread's CurrentUICulture property for all
              resource lookups using this strongly typed resource class.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.DA_EX_DataReaderDeletingNotSupport">
            <summary>
              Looks up a localized string similar to The Data Reader does not support deleting records..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.DA_EX_DataReaderInsertingNotSupport">
            <summary>
              Looks up a localized string similar to The Data Reader does not support inserting records..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.DA_EX_DataReaderUpdatingNotSupport">
            <summary>
              Looks up a localized string similar to The Data Reader does not support updating record values..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.DA_EX_DataReaderUpdatingRecordNotSupport">
            <summary>
              Looks up a localized string similar to The Data Reader does not support updating record values.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.DA_EX_DataSourceDeletesNotSupported">
            <summary>
              Looks up a localized string similar to Original data source does not support deletes..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.DA_EX_DataSourceEmpty">
            <summary>
              Looks up a localized string similar to DataSource is empty. Can not determine data item type..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.DA_EX_DataSourceInsertNotSupported">
            <summary>
              Looks up a localized string similar to Original data source does not support inserts..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.DA_EX_DataSourceUpdatesNotSupported">
            <summary>
              Looks up a localized string similar to Original data source does not support updates..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.DA_EX_ItemNotCreated">
            <summary>
              Looks up a localized string similar to Can not create data item. Type {0} does not contain parameterless constructor..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.DA_EX_ItemNotFound">
            <summary>
              Looks up a localized string similar to Data item is not found..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.DA_EX_ItemTypeNotSpecified">
            <summary>
              Looks up a localized string similar to Can not determine data item Type..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.DB_EX_ConvertTypeNull">
            <summary>
              Looks up a localized string similar to The type to convert to cannot be null..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.FX_DR_FilterIncorrect">
            <summary>
              Looks up a localized string similar to RowFilter is incorrect..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.FX_LE_NoJQuery">
            <summary>
              Looks up a localized string similar to The Infragistics {0} requires jQuery to be loaded..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.FX_LE_NoJQueryIG">
            <summary>
              Looks up a localized string similar to The Infragistics {0} requires its own script to be loaded..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.FxStrings_runtime.FX_LE_NoJQueryUI">
            <summary>
              Looks up a localized string similar to The Infragistics {0} requires jQuery UI to be loaded..
            </summary>
        </member>
        <member name="T:Infragistics.Web.UI.Resources.VideoPlayerStrings">
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.Culture">
            <summary>
              Overrides the current thread's CurrentUICulture property for all
              resource lookups using this strongly typed resource class.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_E_VP_BannerClick">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called when the banner is clicked..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_E_VP_BannerHidden">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called when the banner has been hidden..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_E_VP_BannerVisible">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called when the banner has been displayed..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_E_VP_BookmarkClick">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called when a bookmark is clicked..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_E_VP_BookmarkHit">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called when video playback position passed a bookmark during progress..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_E_VP_Buffering">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called when video has buffered a chunk of data..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_E_VP_Ended">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called when video has ended..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_E_VP_EnterFullScreen">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called when control is going into full screen mode..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_E_VP_ExitFullScreen">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called when control is exiting full screen mode..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_E_VP_Paused">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called when video has paused..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_E_VP_Playing">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called when video is playing..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_E_VP_Progress">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called when video has advanced the playback position..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_E_VP_RelatedVideoClick">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called when a related video is clicked..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_E_VP_Waiting">
            <summary>
              Looks up a localized string similar to Gets sets name of javascript function which is called when video tag is waiting for data from the server..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_AdSources">
            <summary>
              Looks up a localized string similar to Returns a collection of VideoPlayerAdSource objects that will define commercials that play during the video..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_AutoHide">
            <summary>
              Looks up a localized string similar to Get or set whether player controls will auto hide when video is not hovered. This is applicable only when Infragistics playback controls are used..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_AutoPlay">
            <summary>
              Looks up a localized string similar to Get or set whether the video should start playing immediately after the control is loaded..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_Banner">
            <summary>
              Looks up a localized string similar to Object to customize banner support..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_Bookmarks">
            <summary>
              Looks up a localized string similar to Returns a collection of VideoPlayerBookmark objects that will be displayed in the video player control..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_BrowserControls">
            <summary>
              Looks up a localized string similar to Get or set whether if you want to use the built in browser controls. By default player uses Infragistics playback controls. Note that you may have different look and feel accross different browsers if you use the built in browser controls..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_Commercials">
            <summary>
              Looks up a localized string similar to Object used to customize commercials support..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_CurrentTime">
            <summary>
              Looks up a localized string similar to Get or set the current time of the video. This represents the current playback position. Setting it programmatically allows for seeking..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_CustomCss">
            <summary>
              Looks up a localized string similar to Get or set custom css classes for video player..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_Duration">
            <summary>
              Looks up a localized string similar to Get the current duration of the played video. It may be NaN if duration is still not loaded or the video is a live stream..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_EmbeddedCommercials">
            <summary>
              Looks up a localized string similar to Returns a collection of VideoPlayerEmbeddedCommercial objects that mark start value and end value for a commercial range. The values are in seconds..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_FullScreen">
            <summary>
              Looks up a localized string similar to Get or set whether the video player to be in full screen or not. This is not a pure full screen, because browsers do not allow that. It just sets 100% width and height to the control..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_Loop">
            <summary>
              Looks up a localized string similar to Get or set whether the video to start again after it has ended..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_Muted">
            <summary>
              Looks up a localized string similar to Get or set the whether video volume is muted..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_PL_CurrentFormat">
            <summary>
              Looks up a localized string similar to Get or set the current format preference..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_PL_LongFormat">
            <summary>
              Looks up a localized string similar to Get or set the long format of the video progress label. You should use $currentTime$ to represent current playback position and $duration$ to represent video duration..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_PL_ShortFormat">
            <summary>
              Looks up a localized string similar to Get or set the short format of the video progress label. You should use $currentTime$ to represent current playback position and $duration$ to represent video duration..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_PosterUrl">
            <summary>
              Looks up a localized string similar to Get or set a URL to an image to show, when no video data is available..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_Preload">
            <summary>
              Looks up a localized string similar to Get or set whether to preload load inital data for duration of video. If true it may start buffering the video, but this highly depends on the specific browser implementation..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_ProgressLabel">
            <summary>
              Looks up a localized string similar to Get or set specific options to the progress label. This is applicable when Infragistics playback controls are used..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_RelatedVideos">
            <summary>
              Looks up a localized string similar to Returns a collection of VideoPlayerRelatedVideo objects that will be displayed when video playback has ended..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_ShowSeekTime">
            <summary>
              Looks up a localized string similar to Get or set whether the control seek tool tip will be shown when hovering the vide progress bar..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_Sources">
            <summary>
              Looks up a localized string similar to Get or set a list of video sources to choose from. Best coded/format is automatically detected by this control. Supported types are depending on the browser and could be one of the following mov, mp4, webm, ogv..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_Title">
            <summary>
              Looks up a localized string similar to Get or set video title..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VAS_Link">
            <summary>
              Looks up a localized string similar to Get or set the link to open on commercial click..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VAS_Sources">
            <summary>
              Looks up a localized string similar to Get or set the sources of the commercial video..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VAS_Title">
            <summary>
              Looks up a localized string similar to Get or set a tooltip for the bookmark..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VAS_Value">
            <summary>
              Looks up a localized string similar to Get or set the second in the movie at which the commercial should play..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VB_Animate">
            <summary>
              Looks up a localized string similar to Get or set whether to animate the banner display..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VB_Autohide">
            <summary>
              Looks up a localized string similar to Get or set whether auto hide is enabled or not..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VB_CloseBanner">
            <summary>
              Looks up a localized string similar to Get or set whether the user will be able to close the banner or not..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VB_Css">
            <summary>
              Looks up a localized string similar to Get or set the banner specific css class.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VB_Duration">
            <summary>
              Looks up a localized string similar to Get or set the animation duration in ms.  Default is 1000..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VB_Height">
            <summary>
              Looks up a localized string similar to Get or set the banner height.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VB_HideDelay">
            <summary>
              Looks up a localized string similar to Get or set what is the auto hide delay in ms.  Default is 10,000 ms..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VB_Link">
            <summary>
              Looks up a localized string similar to Get or set the banner link that will open in new window..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VB_Show">
            <summary>
              Looks up a localized string similar to Get or set a list of numbers delimitted by &apos;|&apos;. Each number specifies on which second in the movie the banner will pop..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VB_Template">
            <summary>
              Looks up a localized string similar to Get or set the banner jQuery template.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VB_TemplateData">
            <summary>
              Looks up a localized string similar to Get or set the data for the banner template.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VB_Visible">
            <summary>
              Looks up a localized string similar to Get or set whether the banner is visible or not..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VB_Width">
            <summary>
              Looks up a localized string similar to Get or set the banner width.
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VBa_Description">
            <summary>
              Looks up a localized string similar to Get or set description of the bookmark..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VBa_Disabled">
            <summary>
              Looks up a localized string similar to Get or set whether the bookmark is disabled or not..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VBa_Title">
            <summary>
              Looks up a localized string similar to Get or set bookmark title. It is shown as tooltip on hover..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VBa_Value">
            <summary>
              Looks up a localized string similar to Get or set where the bookmark will be positioned. Should be between 0 and movie duration in seconds..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VEC_EndValue">
            <summary>
              Looks up a localized string similar to Get or set the end second of the commercial..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VEC_Link">
            <summary>
              Looks up a localized string similar to Get or set the commercial sponsored link..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VEC_Title">
            <summary>
              Looks up a localized string similar to Get or set a tooltip for the bookmark..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VEC_Value">
            <summary>
              Looks up a localized string similar to Get or set the start second of the commercial..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_Volume">
            <summary>
              Looks up a localized string similar to Get or set the video volume. It can be between 0.0 and 1.0..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VolumeAutohideDelay">
            <summary>
              Looks up a localized string similar to Get or set volume slider auto hide delay. This is applicable only when Infragistics playback controls are used..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VPC_AdMessageAnimate">
            <summary>
              Looks up a localized string similar to Get or set whether to animate the showing of the ad message..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VPC_AdMessageAutoHide">
            <summary>
              Looks up a localized string similar to Get or set whether the ad message will auto hide..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VPC_AdMessageHideDelay">
            <summary>
              Looks up a localized string similar to Get or set the ad message hide delay..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VPC_AlwaysPlayCommercials">
            <summary>
              Looks up a localized string similar to Get or set whether the commercials will always play or not..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VPC_ShowBookmarks">
            <summary>
              Looks up a localized string similar to Get or set whether to show commercial locations or not..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VRV_Css">
            <summary>
              Looks up a localized string similar to Get or set custom CSS class to be applied on the related video element..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VRV_Height">
            <summary>
              Looks up a localized string similar to Get or set the height of the image showing the related video..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VRV_ImageUrl">
            <summary>
              Looks up a localized string similar to Get or set the image url of the related video..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VRV_Sources">
            <summary>
              Looks up a localized string similar to Get or set the sources of the related video..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VRV_Title">
            <summary>
              Looks up a localized string similar to Get or set the title of the video..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VRV_Width">
            <summary>
              Looks up a localized string similar to Get or set the width of the image showing the related video..
            </summary>
        </member>
        <member name="P:Infragistics.Web.UI.Resources.VideoPlayerStrings.LD_P_VP_VS_Source">
            <summary>
              Looks up a localized string similar to Get or set the source string for the video.
            </summary>
        </member>
    </members>
</doc>
