다음을 통해 공유


ScriptReferenceBase.NotifyScriptLoaded 속성

정의

주의

NotifyScriptLoaded is no longer required in script references.

ScriptResourceHandler 개체가 Sys.Application 클래스의 NotifyScriptLoaded 메서드를 호출하기 위해 ECMAScript(JavaScript) 파일 끝에 코드를 자동으로 추가하는지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 property bool NotifyScriptLoaded { bool get(); void set(bool value); };
public bool NotifyScriptLoaded { get; set; }
[System.Obsolete("NotifyScriptLoaded is no longer required in script references.")]
public bool NotifyScriptLoaded { get; set; }
member this.NotifyScriptLoaded : bool with get, set
[<System.Obsolete("NotifyScriptLoaded is no longer required in script references.")>]
member this.NotifyScriptLoaded : bool with get, set
Public Property NotifyScriptLoaded As Boolean

속성 값

Boolean

JavaScript 파일 끝에 Sys.Application.notifyScriptLoaded 메서드가 자동으로 호출되는 경우 true이고, 사용자 코드가 JavaScript 파일에 이미 있는 Sys.Application.notifyScriptLoaded 메서드를 호출하는 경우 false입니다. 기본값은 true입니다.

특성

설명

NotifyScriptLoaded false 어셈블리의 스크립트 파일을 참조 하 고 스크립트 파일에 이미 sys.application.notifyscriptloaded를 호출 하는 코드가 포함 되어 있으면 속성을로 설정 합니다. 스크립트 파일에서 sys.application.notifyscriptloaded 메서드를 두 번 이상 호출 하면 오류가 throw 됩니다.

어셈블리에 포함 되지 않은 독립 실행형 스크립트 파일을 참조 하는 경우 스크립트 파일의 끝에 코드를 포함 하 여 sys.application.notifyscriptloaded 메서드를 호출 해야 합니다. 다음 예제에서는 스크립트 파일의 끝에 포함할 코드를 보여 줍니다.

if(typeof(Sys) !== "undefined) Sys.Application.notifyScriptLoaded();  

적용 대상