LSEG Data Library for .NET

ItemExists

Check if the specified item exists within the stream cache.

Syntax

bool ItemExists(string item)

Usage

var definition = Pricing.Definition().Fields("DSPLY_NAME", "BID", "ASK");

stream.Open();

var item = "EUR=";
stream.AddItems(item);
var itemExists = stream.ItemExists(item); // true

stream.Close();