コード例 #1
0
ファイル: MetadataService.cs プロジェクト: huttan1/profit
 private StringShortProperty GetOrCreateMetadataProperty(PropertyCollection collection, SecurityToken token)
 {
     StringShortProperty property = collection[Metadata.PropertyNameSelectedMetadata] as StringShortProperty;
     if (property == null)
         property = collection.CreateStringShortProperty(Metadata.PropertyNameSelectedMetadata, false, false, true, token);
     return property;
 }