/// <summary>Converts the <see cref="IFrameRing" /> into a <see cref="PocoFrameRing" /> which is serializeable to json or binary.</summary>
		/// <param name="source">The <see cref="IFrameRing" /> to convert.</param>
		public static PocoFrameRing ToPoco(this IFrameRing source)
		{
			return source.ToPoco(new ConversionContext());
		}