コード例 #1
0
 internal override SessionStateProxy GetSessionStateProxy()
 {
     if (this._sessionStateProxy == null)
     {
         this._sessionStateProxy = new SessionStateProxy(this);
     }
     return(this._sessionStateProxy);
 }
コード例 #2
0
ファイル: RunspaceBase.cs プロジェクト: nickchal/pash
 internal override SessionStateProxy GetSessionStateProxy()
 {
     if (this._sessionStateProxy == null)
     {
         this._sessionStateProxy = new SessionStateProxy(this);
     }
     return this._sessionStateProxy;
 }
コード例 #3
0
ファイル: ConnectionBase.cs プロジェクト: 40a/PowerShell
 /// <summary>
 /// Returns SessionState proxy object.
 /// </summary>
 /// <returns></returns>
 internal override SessionStateProxy GetSessionStateProxy()
 {
     return _sessionStateProxy ?? (_sessionStateProxy = new SessionStateProxy(this));
 }