コード例 #1
0
        public static void SetMetadata(this ODataObject oDataObject, Uri baseUri, string entitySet, string typeCast = null, ODataObjectType?type = null)
        {
            if (oDataObject.Properties == null)
            {
                oDataObject.Properties = new Dictionary <string, JToken>();
            }

            oDataObject.AddProperty("MetadataBaseUri", baseUri.ToString());
            oDataObject.AddProperty("EntitySet", entitySet);
            oDataObject.AddProperty("TypeCast", typeCast);
            oDataObject.AddProperty("Type", type.GetValueOrDefault(ODataObjectType.Entity).ToString());
        }
コード例 #2
0
        /// <summary>
        /// Get List of Accounts for User
        /// </summary>
        /// <example>
        /// {
        /// "password":"******"
        /// }
        /// </example>
        /// <remarks>
        /// Retrieve the list of Accounts associated with a given user
        /// All parameters to this call may be passed in the Post body as root JSON parameters, or in the URI -
        /// with the exception of password that must be provided in the POST body.
        /// This operation does not require authentication
        /// </remarks>
        /// <param name="username"></param>
        /// <param name="password"></param>
        /// <param name="employeesonly"></param>
        /// <param name="requirehomefolders"></param>
        /// <param name="singleplane"></param>
        /// <returns>
        /// The list of Accounts associated with this username/password.
        /// </returns>
        public IQuery <ODataFeed <Account> > GetByUser(ODataObject parameters, string username, bool employeesonly = false, bool requirehomefolders = false, bool singleplane = false)
        {
            var sfApiQuery = new ShareFile.Api.Client.Requests.Query <ODataFeed <Account> >(Client);

            sfApiQuery.From("Accounts");
            sfApiQuery.Action("GetByUser");
            parameters.AddProperty("username", username);
            parameters.AddProperty("employeesonly", employeesonly);
            parameters.AddProperty("requirehomefolders", requirehomefolders);
            parameters.AddProperty("singleplane", singleplane);
            sfApiQuery.Body       = parameters;
            sfApiQuery.HttpMethod = "POST";
            return(sfApiQuery);
        }