コード例 #1
0
		/// <summary>Retrieve an element category by path.</summary>
		public PIElementCategory GetByPath(string path, string selectedFields = null)
		{
			ApiResponsePIElementCategory localVarResponse = GetByPathWithHttpInfo(path, selectedFields);
			return localVarResponse.Data;
		}
コード例 #2
0
		/// <summary>Retrieve an element category.</summary>
		public PIElementCategory Get(string webId, string selectedFields = null)
		{
			ApiResponsePIElementCategory localVarResponse = GetWithHttpInfo(webId, selectedFields);
			return localVarResponse.Data;
		}
コード例 #3
0
        /// <summary>Retrieve an element category by path.</summary>
        public PIElementCategory GetByPath(string path, string selectedFields = null, string webIdType = null)
        {
            ApiResponsePIElementCategory localVarResponse = GetByPathWithHttpInfo(path, selectedFields, webIdType);

            return(localVarResponse.Data);
        }