コード例 #1
0
        public void ServeCxml(HttpContext context, Collection collection, string collectionFileName)
        {
            string collectionKey = collection.SetDynamicDzc(collectionFileName);
            m_collectionCache.Add(collectionKey, collection);

            context.Response.ContentType = "text/xml";
            collection.ToCxml(context.Response.Output);
        }
コード例 #2
0
		public void ServeCxml(HttpContext context, Collection collection)
		{
			_collectionCache.Add(collection.CollectionKey, collection);

			context.Response.ContentType = "text/xml";
			collection.ToCxml(context.Response.Output);
		}