forked from isxGames/ISXEVEWrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargoScanner.cs
29 lines (26 loc) · 936 Bytes
/
CargoScanner.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
using System.Globalization;
using LavishScriptAPI;
namespace EVE.ISXEVE
{
/// <summary>
/// Wrapper for the CargoScanner datatype.
/// </summary>
public class CargoScanner : LavishScriptObject
{
public CargoScanner(LavishScriptObject Copy) : base(Copy)
{
}
/// <summary>
/// If ClearPreviousResults is false, then new results are appended to previous. Results will be available in Entity.GetCargoScannerResults()
/// </summary>
/// <param name="entityId"></param>
/// <param name="clearPreviousResults"></param>
/// <returns></returns>
public bool StartScan(Int64 entityId, bool clearPreviousResults)
{
return ExecuteMethod("StartScan", entityId.ToString(CultureInfo.CurrentCulture), clearPreviousResults.ToString(CultureInfo.CurrentCulture));
}
}
}