TransactionalNodeService.Proxy.Universal.Soap.TransactionFramework.SoapTransactionLinkParameter.GetParameterValue C# (CSharp) 메소드

GetParameterValue() 공개 메소드

public GetParameterValue ( System.Guid sessionId ) : Service.MP
sessionId System.Guid
리턴 Service.MP
        public Service.MP GetParameterValue(Guid sessionId)
        {
            switch (_parameterValueType)
            {
                case ParameterType.Null:
                    return null;
                case ParameterType.Explicit:
                    return BuildExplicitParameter(sessionId);
                case ParameterType.MapParameter:
                    return ChainedTransactionLink.ResponseParameter;
                default:
                    return new Service.MP();
            }
        }
    }