コード例 #1
0
 public WBXMLInspector()
 {
     wbxmlDoc = new WBXMLDocument();
     wbxmlDoc.VersionNumber = 1.3;
     wbxmlDoc.TagCodeSpace = new ActiveSyncCodeSpace();
     wbxmlDoc.AttributeCodeSpace = new ActiveSyncAttributeCodeSpace();
     wbxmlDoc.Encoding = Encoding.UTF8;
     xmlView = new XMLView();
     textView = new RawView(this);
     rawBody = null;
     validHeader = false;
     tagPageControl = null;
 }
コード例 #2
0
 public WBXMLInspector()
 {
     wbxmlDoc = new WBXMLDocument();
     wbxmlDoc.VersionNumber      = 1.3;
     wbxmlDoc.TagCodeSpace       = new ActiveSyncCodeSpace();
     wbxmlDoc.AttributeCodeSpace = new ActiveSyncAttributeCodeSpace();
     wbxmlDoc.Encoding           = Encoding.UTF8;
     xmlView        = new XMLView();
     textView       = new RawView(this);
     rawBody        = null;
     validHeader    = false;
     tagPageControl = null;
 }
コード例 #3
0
ファイル: DirectoryEntryType.cs プロジェクト: zyonet/Pscx
 public static ICollection <DirectoryEntryProperty> GetRawProperties(DirectoryEntry entry)
 {
     return(RawView.GetProperties(entry));
 }