Beispiel #1
0
 public QueryItem(string name, string mappingField, SampleDataType dataType, object objValue)
 {
     this._name         = name;
     this._mappingFeild = mappingField;
     this._objValue     = objValue;
     this._dataType     = dataType;
 }
Beispiel #2
0
 /// <exception cref="NotAvailableException">Channel object is no longer available.</exception>
 /// <exception cref="BassErrorException">
 ///     Some error occur to call a Bass function, check the error code and error message
 ///     to get more error information.
 /// </exception>
 /// <exception cref="BassNotLoadedException">
 ///     Bass DLL not loaded, you must use <see cref="BassManager.Initialize" /> to
 ///     load Bass DLL first.
 /// </exception>
 public uint GetDate(IntPtr buffer, SampleDataType dataType)
 {
     CheckAvailable();
     return (uint)ChannelModule.ChannelGetDataFunction.CheckResult(ChannelModule.ChannelGetDataFunction.Delegate(Handle, buffer, (int)dataType));
 }