コード例 #1
0
ファイル: OutoposManager.cs プロジェクト: tonycody/Library
        public ProfileMetadata GetProfileMetadata(string signature)
        {
            if (_disposed)
            {
                throw new ObjectDisposedException(this.GetType().FullName);
            }

            lock (this.ThisLock)
            {
                return(_connectionsManager.GetProfileMetadata(signature));
            }
        }