コード例 #1
0
ファイル: Utils.cs プロジェクト: AlphaStaxLLC/taiga
 public static void WriteCustomProperty(XmlTextWriter xmlWriter, WebDAVProperty resource, string property)
 {
     xmlWriter.WriteElementString(property, resource.Namespace, resource.Value); 
 }
コード例 #2
0
ファイル: WebDAVFile.cs プロジェクト: AlphaStaxLLC/taiga
 public virtual void AddProperty(WebDAVProperty property)
 {
     property.ResourceId = this.id;
     customProperties.Add(property);
 }