SIL.FieldWorks.CacheLight.RealDataCache.get_WritingSystemsOfInterest C# (CSharp) Method

get_WritingSystemsOfInterest() public method

Return a list of the encodings that are of interest within the database.
public get_WritingSystemsOfInterest ( int cwsMax, [ MarshalTypeRef ) : int
cwsMax int If cwsMax is zero, return the actual number (but no encodings).
MarshalTypeRef [
return int
		public int get_WritingSystemsOfInterest(int cwsMax, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(ArrayPtrMarshaler), SizeParamIndex = 0)] ArrayPtr/*int[]*/ _ws)
		{
			CheckDisposed();

			// See MDC->GetFields for example of thorwing when too small.
			// CustViewDa::get_WritingSystemsOfInterest for details on code to port.
			// This depends on the vector methods being implemented
			// At least: get_VecSize/get_VecSizeAssumeCached, but perhaps get_VecItem/VecProp?.
			throw new NotImplementedException("'get_WritingSystemsOfInterest' not implemented yet.");
		}