Opc.Ua.Schema.SchemaValidator.SetResourcePaths C# (CSharp) Method

SetResourcePaths() protected method

Adds the embedded resources to the file table.
protected SetResourcePaths ( string resources ) : void
resources string
return void
        protected void SetResourcePaths(string[][] resources)
        {
            if (resources != null)
            {
                for (int ii = 0; ii < resources.Length; ii++)
                {
                    if (!m_knownFiles.ContainsKey(resources[ii][0]))
                    {
                        m_knownFiles.Add(resources[ii][0], resources[ii][1]);
                    }
                }
            }
        }
        #endregion