Atom10ItemFormatter 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
SyndicationItem 인스턴스를 Atom 1.0 형식으로 또는 그 반대로 serialize하는 클래스입니다.
public ref class Atom10ItemFormatter : System::ServiceModel::Syndication::SyndicationItemFormatter, System::Xml::Serialization::IXmlSerializable
public class Atom10ItemFormatter : System.ServiceModel.Syndication.SyndicationItemFormatter, System.Xml.Serialization.IXmlSerializable
type Atom10ItemFormatter = class
inherit SyndicationItemFormatter
interface IXmlSerializable
Public Class Atom10ItemFormatter
Inherits SyndicationItemFormatter
Implements IXmlSerializable
- 상속
- 파생
- 구현
예제
다음 코드에서는 인스턴스를 만들고 serialize하는 SyndicationItem 방법을 보여 있습니다.
SyndicationItem item = new SyndicationItem("Test Item", "This is the content for Test Item", new Uri("http://localhost/ItemOne"), "TestItemID", DateTime.Now);
item.Links.Add(new SyndicationLink(new Uri("http://someuri"), "alternate", "MyItemLink", "text/html", 100));
item.PublishDate = new DateTime(1968, 2, 23);
item.LastUpdatedTime = DateTime.Today;
item.SourceFeed = new SyndicationFeed();
item.Summary = new TextSyndicationContent("This the item summary");
XmlWriter atomWriter = XmlWriter.Create("AtomItem.xml");
Atom10ItemFormatter formatter = new Atom10ItemFormatter(item);
formatter.WriteTo(atomWriter);
atomWriter.Close();
Dim item As SyndicationItem = New SyndicationItem("Test Item", "This is the content for Test Item", New Uri("http:'localhost/ItemOne"), "TestItemID", DateTime.Now)
item.Links.Add(New SyndicationLink(New Uri("http:'someuri"), "alternate", "MyItemLink", "text/html", 100))
item.PublishDate = New DateTime(1968, 2, 23)
item.LastUpdatedTime = DateTime.Today
item.SourceFeed = New SyndicationFeed()
item.Summary = New TextSyndicationContent("This the item summary")
Dim atomWriter As XmlWriter = XmlWriter.Create("AtomItem.xml")
Dim formatter As Atom10ItemFormatter = New Atom10ItemFormatter(item)
formatter.WriteTo(atomWriter)
atomWriter.Close()
설명
이 클래스를 사용하여 인스턴스 SyndicationItem 를 직렬화하고 Atom 1.0 항목이 포함된 XML 문서에서 인스턴스 SyndicationItem 를 만듭니다. 에서 클래스 SyndicationItem 를 파생하고 직렬화하려는 경우 포맷터를 대신 사용합니다 Atom10ItemFormatter<TSyndicationItem> .
참고
Atom 1.0 사양에서는 모든 날짜 구문에 소수 자릿수 초를 지정할 수 있습니다. 직렬화 및 역직렬화할 때 WCF 구현은 소수 자릿수 초를 무시합니다.
생성자
Atom10ItemFormatter() |
Atom10ItemFormatter 클래스의 새 인스턴스를 만듭니다. |
Atom10ItemFormatter(SyndicationItem) |
지정된 Atom10ItemFormatter를 사용하여 SyndicationItem 클래스의 새 인스턴스를 만듭니다. |
Atom10ItemFormatter(Type) |
Atom10ItemFormatter 클래스의 새 인스턴스를 초기화합니다. |
속성
Item |
포맷터와 연결된 SyndicationItem 를 가져옵니다. (다음에서 상속됨 SyndicationItemFormatter) |
ItemType |
Atom10ItemFormatter와 연결된 배포 항목의 형식을 가져옵니다. |
PreserveAttributeExtensions |
serialization 중에 특성 확장을 유지할지 여부를 지정하는 값을 가져오거나 설정합니다. |
PreserveElementExtensions |
serialization 중에 요소 확장을 유지할지 여부를 지정하는 값을 가져오거나 설정합니다. |
Version |
포맷터에서 사용되는 배포 버전을 가져옵니다. |
메서드
명시적 인터페이스 구현
IXmlSerializable.GetSchema() |
GetSchema() 메서드를 구현합니다. |
IXmlSerializable.ReadXml(XmlReader) |
ReadXml(XmlReader) 메서드를 구현합니다. |
IXmlSerializable.WriteXml(XmlWriter) |
WriteXml(XmlWriter) 메서드를 구현합니다. |
적용 대상
.NET