Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
OpenCMIS(またはdotcmis )を使用して、リポジトリからリポジトリオブジェクトを取得した後、特定の機能があるかどうかを確認するにはどうすればよいですか?
たとえば、CapabilityChangesがに設定されているかどうかall。
all
これは少し良いです:
if ( repository.Capabilities.ChangesCapabilities == CapabilityChanges.All ) { ... }
おそらくもっとエレガントな方法がありますが、今はこれを使用しています:
if ( repository.Capabilities.ChangesCapabilities.GetCmisValue().Equals("all") ) { ... }