コード例 #1
0
 protected ServiceProviderConfiguration()
 {
     /* 3.3.1.Resource Types
      * When adding a resource to a specific endpoint, the meta attribute
      * "resourceType" SHALL be set by the HTTP service provider to the
      * corresponding resource type for the endpoint.  For example, a POST to
      * the endpoint "/Users" will set "resourceType" to "User", and
      * "/Groups" will set "resourceType" to "Group".
      */
     Meta = new ResourceMetadata(ScimConstants.ResourceTypes.ServiceProviderConfig);
 }
コード例 #2
0
ファイル: ScimSchema.cs プロジェクト: PowerDMS/Owin.Scim
 /// <summary>
 /// Initializes a new instance of the <see cref="ScimSchema" /> class.
 /// </summary>
 protected ScimSchema()
 {
     Meta = new ResourceMetadata(ScimConstants.ResourceTypes.Schema);
 }
コード例 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ScimSchema" /> class.
 /// </summary>
 protected ScimSchema()
 {
     Meta = new ResourceMetadata(ScimConstants.ResourceTypes.Schema);
 }