HTTP/2 301
date: Sat, 11 Oct 2025 06:43:20 GMT
content-length: 0
location: https://learn.microsoft.com/en-us/previous-versions/dynamics/ax-2012/system-classes/gg922592(v=ax.60)?redirectedfrom=MSDN
cache-control: public,max-age=600
strict-transport-security: max-age=2592000
request-context: appId=cid-v1:a7c67087-5e2a-4790-bab5-5262204d7a98
x-content-type-options: nosniff
x-redirectdb-info: Content level redirect, Id: gg922592, Locale: en-us, Pfv: ax.60
x-azure-ref: 20251011T064319Z-16df8d66498dcxfvhC1BOMk0ps0000000acg00000000dq7k
x-fd-int-roxy-purgeid: 0
x-cache: TCP_MISS
nel: {"report_to":"network-errors","max_age":604800,"success_fraction":0.01,"failure_fraction":1.0}
report-to: {"group":"network-errors","max_age":604800,"endpoints":[{"url":"https://mdec.nelreports.net/api/report?cat=mtps-redirect"}]}
HTTP/2 200
content-type: text/html
etag: "5eWpPrzkZR2UscOGBzjIb5h1+u8="
last-modified: Fri, 01 Nov 2024 04:40:19 GMT
content-security-policy: default-src *;script-src 'self' 'unsafe-inline' 'unsafe-eval' *.microsoft.com js.monitor.azure.com dc.services.visualstudio.com try-ppe.dot.net aznb-ame-prod.azureedge.net client-api.arkoselabs.com markdowneditor-public-e0gpfpcwcbbze3ag.b01.azurefd.net markdowneditor-external-Public-fmgmfefddycxdmfj.b01.azurefd.net h64.online-metrix.net;style-src 'self' 'unsafe-inline' *.microsoft.com aznb-ame-prod.azureedge.net try-ppe.dot.net markdowneditor-public-e0gpfpcwcbbze3ag.b01.azurefd.net markdowneditor-external-Public-fmgmfefddycxdmfj.b01.azurefd.net;img-src * data: blob:;frame-ancestors docs.microsoft.com *.docs.microsoft.com learn.microsoft.com *.learn.microsoft.com labclient.labondemand.com portal.azure.com *.portal.azure.com portal.azure.us portal.azure.cn ai.azure.com *.ai.azure.com learn-video.azurefd.net docs.azure.cn *.onecloud.azure-test.net *.sharepoint.com localhost:3000;worker-src 'self' blob: *.microsoft.com aznb-ame-prod.azureedge.net;form-action 'self' *.microsoft.com *.azure.cn *.pearsonvue.com;media-src 'self' blob: *.microsoft.com *.azure.cn videoencodingpublic-hgeaeyeba8gycee3.b01.azurefd.net videoencodingpubdevwus.blob.core.windows.net videoencodingpublicwus.blob.core.windows.net;base-uri 'self';font-src 'self' https: data:;object-src 'none';script-src-attr 'none';upgrade-insecure-requests
cross-origin-opener-policy: unsafe-none
cross-origin-resource-policy: cross-origin
origin-agent-cluster: ?1
referrer-policy: strict-origin-when-cross-origin
x-content-type-options: nosniff
x-dns-prefetch-control: off
x-download-options: noopen
x-frame-options: SAMEORIGIN
x-permitted-cross-domain-policies: none
x-xss-protection: 0
x-buildversion: 0.4.03202.7156-c5050e6c
x-azure-ref: 20251011T064320Z-r1d5cb7b85dzs7tmhC1MAApdcw00000005q0000000001pdf
nel: {"report_to":"network-errors","max_age":604800,"success_fraction":0.01,"failure_fraction":1.0}
report-to: {"group":"network-errors","max_age":604800,"endpoints":[{"url":"https://mdec.nelreports.net/api/report?cat=mdocs"}]}
cache-control: public, max-age=599
expires: Sat, 11 Oct 2025 06:53:20 GMT
date: Sat, 11 Oct 2025 06:43:21 GMT
akamai-cache-status: Miss from child, NotCacheable from parent
strict-transport-security: max-age=31536000; includeSubDomains; preload
Object Class | Microsoft Learn
Read in English
Share via
Facebook
LinkedIn
Email
Object Class
The Object class is the base class from which all other classes are derived.
Syntax
class Object
Run On
Called
Methods
.gif) |
cancelTimeOut |
Cancels a previous method call to the setTimeOut method. |
.gif) |
equal |
Determines whether the specified object is equal to the current one. |
.gif) |
getTimeOutTimerHandle |
Returns the timer handle for the object. |
.gif) |
handle |
Retrieves the handle of the class of the object. |
.gif) |
new |
Initializes a new instance of the Object class. |
.gif) |
notify |
Releases the hold on an object that has called the wait method on this object. |
.gif) |
notifyAll |
Releases a lock on the object that was issued by the wait method on this object. |
.gif) |
objectOnServer |
Determines whether the object is on a server. |
.gif) |
owner |
Returns the instance that owns the object. |
.gif) |
setTimeOut |
Sets up the scheduled execution of a specified method. |
.gif) |
toString |
Returns a string that represents the current object. |
.gif) |
usageCount |
Returns the current number of references, that is, the value of the reference counter, that the object has. |
.gif) |
wait |
Pauses a process. |
.gif) |
xml |
Returns an XML string that represents the current object. |
Top
Methods in the Object class can be called for any object.
The Object class is used to allow assignment and equality checks to be performed without the developer having to know the actual type of the object.
The methods can be grouped into three groups:
Time out methods - can be used to activate a method after a specified period of time has passed.
Process methods, such as the Wait, Notify, and NotifyAll method - used to control process flow and to wait for another object to finish its task.
Class methods - return basic information about the object.
Inheritance Hierarchy
Object Class
Additional resources