ExtrapolationTypeToString() публичный статический Метод

Converts a CesiumExtrapolationType to the corresponding string in a CZML stream.
public static ExtrapolationTypeToString ( CesiumExtrapolationType value ) : string
value CesiumExtrapolationType The value to convert.
Результат string
Пример #1
0
        /// <summary>
        /// Writes the type of extrapolation to perform when a value is requested at a time before any available samples.
        /// </summary>
        /// <param name="extrapolationType">The extrapolation type.</param>
        public void WriteBackwardExtrapolationType(CesiumExtrapolationType extrapolationType)
        {
            OpenIntervalIfNecessary();

            Output.WritePropertyName("backwardExtrapolationType");
            Output.WriteValue(CesiumFormattingHelper.ExtrapolationTypeToString(extrapolationType));
        }