Example #1
0
 /// <remarks>
 ///  Filters the URI given by the object UriFilterData.
 ///  The given URL is filtered based on the specified list of filters.
 ///  If the list is empty all available filters would be used.
 /// <param> name="data" object that contains the URI to be filtered.
 /// </param><param> name="filters" specify the list of filters to be used.
 /// </param></remarks>        <return> a boolean indicating whether the URI has been changed
 ///      </return>
 ///         <short>    Filters the URI given by the object UriFilterData.</short>
 public bool FilterUri(KUriFilterData data, List<string> filters)
 {
     return (bool) interceptor.Invoke("filterUri#?", "filterUri(KUriFilterData&, const QStringList&)", typeof(bool), typeof(KUriFilterData), data, typeof(List<string>), filters);
 }
Example #2
0
 public bool FilterUri(KUriFilterData data)
 {
     return (bool) interceptor.Invoke("filterUri#", "filterUri(KUriFilterData&)", typeof(bool), typeof(KUriFilterData), data);
 }
Example #3
0
 /// <remarks>
 ///  Copy constructor.
 ///  Creates a UriFilterData object from another
 ///  URI filter data object.
 /// <param> name="data" the uri filter data to be copied.
 ///      </param></remarks>        <short>    Copy constructor.</short>
 public KUriFilterData(KUriFilterData data)
     : this((Type) null)
 {
     CreateProxy();
     interceptor.Invoke("KUriFilterData#", "KUriFilterData(const KUriFilterData&)", typeof(void), typeof(KUriFilterData), data);
 }