コード例 #1
0
ファイル: JsConfigScope.cs プロジェクト: ChrisRomp/Xero-Net
        internal JsConfigScope()
        {
#if !SILVERLIGHT
            Thread.BeginThreadAffinity();
#endif
            parent = head;
            head = this;
        }
コード例 #2
0
ファイル: JsConfigScope.cs プロジェクト: sv-dev1/Xero
        internal JsConfigScope()
        {
#if !SILVERLIGHT
            Thread.BeginThreadAffinity();
#endif
            parent = head;
            head   = this;
        }
コード例 #3
0
ファイル: JsConfigScope.cs プロジェクト: ChrisRomp/Xero-Net
        public void Dispose()
        {
            if (!disposed)
            {
                disposed = true;

                Debug.Assert(this == head, "Disposed out of order.");

                head = parent;
#if !SILVERLIGHT
                Thread.EndThreadAffinity();
#endif
            }
        }
コード例 #4
0
ファイル: JsConfigScope.cs プロジェクト: sv-dev1/Xero
        public void Dispose()
        {
            if (!disposed)
            {
                disposed = true;

                Debug.Assert(this == head, "Disposed out of order.");

                head = parent;
#if !SILVERLIGHT
                Thread.EndThreadAffinity();
#endif
            }
        }