コード例 #1
0
        /// <summary>
        /// Writes the value expressed as a <c>references</c>, which is the list of lists of positions specified as references. Each reference is to a property that defines a single position, which may change with time.
        /// </summary>
        /// <param name="references">The list of lists of references.</param>
        public void WriteReferences([CSToJavaUseWildcardGenerics] IEnumerable <IEnumerable <Reference> > references)
        {
            const string PropertyName = ReferencesPropertyName;

            OpenIntervalIfNecessary();
            Output.WritePropertyName(PropertyName);
            CesiumWritingHelper.WriteReferenceListOfLists(Output, references);
        }