Decidir_SDK.RequestData.ExecuteResponse.getAuthorizationKey C# (CSharp) 메소드

getAuthorizationKey() 공개 메소드

public getAuthorizationKey ( ) : string
리턴 string
        public string getAuthorizationKey()
        {
            return authorizationKey;
        }

Usage Example

예제 #1
0
파일: Program.cs 프로젝트: decidir/sdk-net
 public static void printExecuteResponse(ExecuteResponse exResponse)
 {
     Console.WriteLine("Status Code: " + exResponse.getStatusCode());
     Console.WriteLine("StatusMessage: " + exResponse.getStatusMessage());
     Console.WriteLine("AuthorizationKey: " + exResponse.getAuthorizationKey());
     Console.WriteLine("EncodingMethod: " + exResponse.getEncoding());
     Console.WriteLine("Payload: " + exResponse.getPayload());
 }